ALcune correzioni sparse, risistemati i commenti interni delle varie
[gapil.git] / sources / TCP_echo_first.c
1 /* TCP_echo_first.c
2  * 
3  * Copyright (C) 2001-2003 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 TCP_echo_first.c (former ElemEchoTCPClient)
22  * Simple TCP client for echo service (port 7)
23  * First version, broken in many ways, that will be corrected later
24  *
25  * Author: Simone Piccardi
26  * Jun. 2001
27  *
28  * Usage: echo -h give all info's
29  *
30  * $Id$
31  *
32  ****************************************************************/
33 /* 
34  * Include needed headers
35  */
36 #include <sys/types.h>   /* predefined types */
37 #include <unistd.h>      /* include unix standard library */
38 #include <arpa/inet.h>   /* IP addresses conversion utiliites */
39 #include <sys/socket.h>  /* socket library */
40 #include <stdio.h>       /* include standard I/O library */
41
42 #define MAXLINE 256
43 void usage(void);
44 void ClientEcho(FILE * filein, int socket);
45
46 /* Program begin */
47 int main(int argc, char *argv[])
48 {
49 /* 
50  * Variables definition  
51  */
52     int sock_fd, i;
53     struct sockaddr_in serv_add;
54     /*
55      * Input section: decode parameters passed in the calling 
56      * Use getopt function
57      */
58     opterr = 0;  /* don't want writing to stderr */
59     while ( (i = getopt(argc, argv, "h")) != -1) {
60         switch (i) {
61         /* 
62          * Handling options 
63          */ 
64         case 'h':  
65             printf("Wrong -h option use\n");
66             usage();
67             return(1);
68             break;
69         case '?':   /* unrecognized options */
70             printf("Unrecognized options -%c\n",optopt);
71             usage();
72         default:    /* should not reached */
73             usage();
74         }
75     }
76     /* ***********************************************************
77      * 
78      *           Options processing completed
79      *
80      *                Main code beginning
81      * 
82      * ***********************************************************/
83     /* create socket */
84     if ( (sock_fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
85         perror("Socket creation error");
86         return 1;
87     }
88     /* initialize address */
89     memset((void *) &serv_add, 0, sizeof(serv_add)); /* clear server address */
90     serv_add.sin_family = AF_INET;                   /* address type is INET */
91     serv_add.sin_port = htons(7);                    /* echo port is 7 */
92     /* build address using inet_pton */
93     if ( (inet_pton(AF_INET, argv[optind], &serv_add.sin_addr)) <= 0) {
94         perror("Address creation error");
95         return 1;
96     }
97     /* extablish connection */
98     if (connect(sock_fd, (struct sockaddr *)&serv_add, sizeof(serv_add)) < 0) {
99         perror("Connection error");
100         return 1;
101     }
102     /* read daytime from server */
103     ClientEcho(stdin, sock_fd);
104     /* normal exit */
105     return 0;
106 }
107 /*
108  * routine to print usage info and exit 
109  */
110 void usage(void) {
111     printf("Take daytime from a remote host \n");
112     printf("Usage:\n");
113     printf("  daytime [-h] [-v] [host in dotted decimal form] \n");
114     printf("  -v           set verbosity on\n");
115     printf("  -h           print this help\n");
116     exit(1);
117 }
118
119 void ClientEcho(FILE * filein, int socket) 
120 {
121     char sendbuff[MAXLINE+1], recvbuff[MAXLINE+1];
122     int nread; 
123     while (fgets(sendbuff, MAXLINE, filein) != NULL) {
124         FullWrite(socket, sendbuff, strlen(sendbuff)); 
125         nread = read(socket, recvbuff, strlen(sendbuff));
126         recvbuff[nread] = 0;
127         fputs(recvbuff, stdout);
128     }
129     return;
130 }