Aggiunta semop
[gapil.git] / sources / ElemEchoTCPClient.c
1 /* ElemEchoTCPClient.c
2  * 
3  * Copyright (C) 2001 Simone Piccardi
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or (at
8  * your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 /****************************************************************
20  *
21  * Program ElemEchoTCPClient.c
22  * Simple TCP client for echo service (port 7)
23  *
24  * Author: Simone Piccardi
25  * Jun. 2001
26  *
27  * Usage: echo -h give all info's
28  *
29  * $Id: ElemEchoTCPClient.c,v 1.3 2001/09/09 22:45:34 piccardi Exp $
30  *
31  ****************************************************************/
32 /* 
33  * Include needed headers
34  */
35 #include <sys/types.h>   /* predefined types */
36 #include <unistd.h>      /* include unix standard library */
37 #include <arpa/inet.h>   /* IP addresses conversion utiliites */
38 #include <sys/socket.h>  /* socket library */
39 #include <stdio.h>       /* include standard I/O library */
40
41 #include "wrappers.h"
42
43 #define MAXLINE 256
44 void usage(void);
45 void ClientEcho(FILE * filein, int socket);
46
47 /* Program begin */
48 int main(int argc, char *argv[])
49 {
50 /* 
51  * Variables definition  
52  */
53     int sock_fd, i;
54     struct sockaddr_in serv_add;
55     /*
56      * Input section: decode parameters passed in the calling 
57      * Use getopt function
58      */
59     opterr = 0;  /* don't want writing to stderr */
60     while ( (i = getopt(argc, argv, "h")) != -1) {
61         switch (i) {
62         /* 
63          * Handling options 
64          */ 
65         case 'h':  
66             printf("Wrong -h option use\n");
67             usage();
68             return(0);
69             break;
70         case '?':   /* unrecognized options */
71             printf("Unrecognized options -%c\n",optopt);
72             usage();
73         default:    /* should not reached */
74             usage();
75         }
76     }
77     /* ***********************************************************
78      * 
79      *           Options processing completed
80      *
81      *                Main code beginning
82      * 
83      * ***********************************************************/
84     /* create socket */
85     if ( (sock_fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
86         perror("Socket creation error");
87         return -1;
88     }
89     /* initialize address */
90     memset((void *) &serv_add, 0, sizeof(serv_add)); /* clear server address */
91     serv_add.sin_family = AF_INET;                   /* address type is INET */
92     serv_add.sin_port = htons(7);                    /* echo port is 7 */
93     /* build address using inet_pton */
94     if ( (inet_pton(AF_INET, argv[optind], &serv_add.sin_addr)) <= 0) {
95         perror("Address creation error");
96         return -1;
97     }
98     /* extablish connection */
99     if (connect(sock_fd, (struct sockaddr *)&serv_add, sizeof(serv_add)) < 0) {
100         perror("Connection error");
101         return -1;
102     }
103     /* read daytime from server */
104     EchoClient(stdin, sock_fd);
105     /* normal exit */
106     return 0;
107 }
108 /*
109  * routine to print usage info and exit 
110  */
111 void usage(void) {
112     printf("Take daytime from a remote host \n");
113     printf("Usage:\n");
114     printf("  daytime [-h] [-v] [host in dotted decimal form] \n");
115     printf("  -v           set verbosity on\n");
116     printf("  -h           print this help\n");
117     exit(1);
118 }
119
120 void ClientEcho(FILE * filein, int socket) 
121 {
122     char sendbuff[MAXLINE], recvbuff[MAXLINE];
123     int nread; 
124     while (fgets(sendbuff, MAXLINE, filein) != NULL) {
125         SockWrite(socket, sendbuff, strlen(sendbuff)); 
126         nread = SockRead(socket, recvbuff, strlen(sendbuff));
127         recvbuff[nread] = 0;
128         fputs(recvbuff, stdout);
129     }
130     return;
131 }