Altre modifiche
[gapil.git] / sources / TCP_echo.c
1 /* TCP_echo1.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 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: TCP_echo.c,v 1.4 2003/07/27 15:20:45 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 #include <errno.h>       /* include error codes */
41 #include <string.h>      /* include erroro strings definitions */
42
43 #define MAXLINE 256
44 void usage(void);
45 void ClientEcho(FILE * filein, int socket);
46 void SigTERM_hand(int sig);
47
48 /* Program begin */
49 int main(int argc, char *argv[])
50 {
51 /* 
52  * Variables definition  
53  */
54     int sock, i;
55     int reset = 0;
56     struct sockaddr_in serv_add;
57     struct linger ling;
58     /*
59      * Input section: decode parameters passed in the calling 
60      * Use getopt function
61      */
62     opterr = 0;  /* don't want writing to stderr */
63     while ( (i = getopt(argc, argv, "hr")) != -1) {
64         switch (i) {
65         /* 
66          * Handling options 
67          */ 
68         case 'h':  
69             printf("Wrong -h option use\n");
70             usage();
71             return(1);
72             break;
73         case 'r':
74             reset = 1;
75             break;
76         case '?':   /* unrecognized options */
77             printf("Unrecognized options -%c\n",optopt);
78             usage();
79         default:    /* should not reached */
80             usage();
81         }
82     }
83     /* ***********************************************************
84      * 
85      *           Options processing completed
86      *
87      *                Main code beginning
88      * 
89      * ***********************************************************/
90     /* create socket */
91     if ( (sock = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
92         perror("Socket creation error");
93         return 1;
94     }
95     /* initialize address */
96     memset((void *) &serv_add, 0, sizeof(serv_add)); /* clear server address */
97     serv_add.sin_family = AF_INET;                   /* address type is INET */
98     serv_add.sin_port = htons(7);                    /* echo port is 7 */
99     /* build address using inet_pton */
100     if ( (inet_pton(AF_INET, argv[optind], &serv_add.sin_addr)) <= 0) {
101         perror("Address creation error");
102         return 1;
103     }
104     /* extablish connection */
105     if (connect(sock, (struct sockaddr *)&serv_add, sizeof(serv_add)) < 0) {
106         perror("Connection error");
107         return 1;
108     }
109     /* check if resetting on close is required */
110     if (reset) {
111         printf("Setting reset on close \n");
112         ling.l_onoff = 1;
113         ling.l_linger = 0;      
114         if (setsockopt(sock, SOL_SOCKET, SO_LINGER, &ling, sizeof(ling))) {
115             perror("Cannot set linger");
116             exit(1);
117         }
118         return 0;
119     }
120     /* do read/write operations */
121     ClientEcho(stdin, sock);
122     /* normal exit */
123     return 0;
124 }
125 /*
126  * routine to print usage info and exit 
127  */
128 void usage(void) {
129     printf("Take daytime from a remote host \n");
130     printf("Usage:\n");
131     printf("  daytime [-h] [-v] [host in dotted decimal form] \n");
132 //    printf("  -v         set verbosity on\n");
133     printf("  -r           require reset on closing\n");
134     printf("  -h           print this help\n");
135     exit(1);
136 }
137
138 void ClientEcho(FILE * filein, int socket) 
139 {
140     char sendbuff[MAXLINE+1], recvbuff[MAXLINE+1];
141     int nread, nwrite; 
142     while (fgets(sendbuff, MAXLINE, filein) != NULL) {
143         nwrite = FullWrite(socket, sendbuff, strlen(sendbuff)); 
144         if (nwrite < 0) {
145             printf("Errore in scrittura %s", strerror(errno));
146         }
147         nread = read(socket, recvbuff, strlen(sendbuff));
148         if (nread < 0) {
149             printf("Errore in lettura %s", strerror(errno));
150         }
151         recvbuff[nread] = 0;
152         if (fputs(recvbuff, stdout) == EOF) {
153             perror("Errore in scrittura su terminale");
154         }
155     }
156     return;
157 }