3 * Copyright (C) 2001-2003 Simone Piccardi
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.
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.
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.
19 /****************************************************************
22 * Simple TCP client for echo service (port 7)
24 * Author: Simone Piccardi
27 * Usage: echo -h give all info's
29 * $Id: TCP_echo.c,v 1.11 2003/10/20 22:44:16 piccardi Exp $
31 ****************************************************************/
33 * Include needed headers
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 */
48 void ClientEcho(FILE * filein, int socket);
49 void SigTERM_hand(int sig);
52 int main(int argc, char *argv[])
55 * Variables definition
61 * Input section: decode parameters passed in the calling
64 opterr = 0; /* don't want writing to stderr */
65 while ( (i = getopt(argc, argv, "hr")) != -1) {
71 printf("Wrong -h option use\n");
78 case '?': /* unrecognized options */
79 printf("Unrecognized options -%c\n",optopt);
81 default: /* should not reached */
85 /* ***********************************************************
87 * Options processing completed
91 * ***********************************************************/
92 /* call sockaddr to get a connected socket */
93 if ( (sock = sockconn(argv[optind], "echo", 6, SOCK_STREAM)) < 0) {
94 if (errno) perror("Socket creation error");
97 /* check if resetting on close is required */
99 printf("Setting reset on close \n");
102 if (setsockopt(sock, SOL_SOCKET, SO_LINGER, &ling, sizeof(ling))) {
103 perror("Cannot set linger");
107 /* do read/write operations */
108 ClientEcho(stdin, sock);
113 * routine to print usage info and exit
116 printf("Take daytime from a remote host \n");
118 printf(" daytime [-h] [-v] [host in dotted decimal form] \n");
119 // printf(" -v set verbosity on\n");
120 printf(" -r require reset on closing\n");
121 printf(" -h print this help\n");
125 void ClientEcho(FILE * filein, int socket)
127 char sendbuff[MAXLINE+1], recvbuff[MAXLINE+1];
132 /* initialize file descriptor set */
134 maxfd = max(fileno(filein), socket) + 1;
136 FD_SET(socket, &fset); /* set for the socket */
138 FD_SET(fileno(filein), &fset); /* set for the standard input */
140 select(maxfd, &fset, NULL, NULL, NULL); /* wait for read ready */
141 if (FD_ISSET(fileno(filein), &fset)) { /* if ready on stdin */
142 if (fgets(sendbuff, MAXLINE, filein) == NULL) { /* if no input */
143 eof = 1; /* EOF on input */
144 shutdown(socket, SHUT_WR); /* close write half */
145 FD_CLR(fileno(filein), &fset); /* no more interest on stdin */
146 } else { /* else we have to write to socket */
147 nwrite = FullWrite(socket, sendbuff, strlen(sendbuff));
148 if (nwrite < 0) { /* on error stop */
149 printf("Errore in scrittura: %s", strerror(errno));
154 if (FD_ISSET(socket, &fset)) { /* if ready on socket */
155 nread = read(socket, recvbuff, strlen(sendbuff)); /* do read */
156 if (nread < 0) { /* error condition, stop client */
157 printf("Errore in lettura: %s\n", strerror(errno));
160 if (nread == 0) { /* server closed connection, stop */
164 printf("EOF prematuro sul socket\n");
168 recvbuff[nread] = 0; /* else read is ok, write on stdout */
169 if (fputs(recvbuff, stdout) == EOF) {
170 perror("Errore in scrittura su terminale");