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 /****************************************************************
21 * Program TCP_echo_second.c
22 * Simple TCP client for echo service (port 7)
23 * This version handle server closing connection
25 * Author: Simone Piccardi
28 * Usage: echo -h give all info's
30 ****************************************************************/
32 * Include needed headers
34 #include <sys/types.h> /* primitive system data types */
35 #include <unistd.h> /* unix standard library */
36 #include <arpa/inet.h> /* IP addresses conversion utilities */
37 #include <sys/socket.h> /* socket constants, types and functions */
38 #include <stdio.h> /* standard I/O library */
39 #include <errno.h> /* error definitions and routines */
40 #include <string.h> /* C strings library */
44 void ClientEcho(FILE * filein, int socket);
45 void SigTERM_hand(int sig);
48 int main(int argc, char *argv[])
51 * Variables definition
55 struct sockaddr_in serv_add;
58 * Input section: decode parameters passed in the calling
61 opterr = 0; /* don't want writing to stderr */
62 while ( (i = getopt(argc, argv, "hr")) != -1) {
68 printf("Wrong -h option use\n");
75 case '?': /* unrecognized options */
76 printf("Unrecognized options -%c\n",optopt);
78 default: /* should not reached */
82 /* ***********************************************************
84 * Options processing completed
88 * ***********************************************************/
90 if ( (sock = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
91 perror("Socket creation error");
94 /* initialize address */
95 memset((void *) &serv_add, 0, sizeof(serv_add)); /* clear server address */
96 serv_add.sin_family = AF_INET; /* address type is INET */
97 serv_add.sin_port = htons(7); /* echo port is 7 */
98 /* build address using inet_pton */
99 if ( (inet_pton(AF_INET, argv[optind], &serv_add.sin_addr)) <= 0) {
100 perror("Address creation error");
103 /* extablish connection */
104 if (connect(sock, (struct sockaddr *)&serv_add, sizeof(serv_add)) < 0) {
105 perror("Connection error");
108 /* check if resetting on close is required */
110 printf("Setting reset on close \n");
113 if (setsockopt(sock, SOL_SOCKET, SO_LINGER, &ling, sizeof(ling))) {
114 perror("Cannot set linger");
118 /* do read/write operations */
119 ClientEcho(stdin, sock);
124 * routine to print usage info and exit
127 printf("Take daytime from a remote host \n");
129 printf(" daytime [-h] [-v] [host in dotted decimal form] \n");
130 // printf(" -v set verbosity on\n");
131 printf(" -r require reset on closing\n");
132 printf(" -h print this help\n");
136 void ClientEcho(FILE * filein, int socket)
138 char sendbuff[MAXLINE+1], recvbuff[MAXLINE+1];
140 while (fgets(sendbuff, MAXLINE, filein) != NULL) {
141 nwrite = FullWrite(socket, sendbuff, strlen(sendbuff));
143 printf("Errore in scrittura: %s", strerror(errno));
146 nread = read(socket, recvbuff, strlen(sendbuff));
148 printf("Errore in lettura: %s\n", strerror(errno));
152 printf("EOF sul socket\n");
156 if (fputs(recvbuff, stdout) == EOF) {
157 perror("Errore in scrittura su terminale");