3 * Copyright (C) 2004 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 UDP client for echo service (port 7)
24 * Author: Simone Piccardi
27 * Usage: echo -h give all info's
29 ****************************************************************/
31 * Include needed headers
33 #include <sys/types.h> /* primitive system data types */
34 #include <unistd.h> /* unix standard library */
35 #include <arpa/inet.h> /* IP addresses conversion utilities */
36 #include <sys/socket.h> /* socket constants, types and functions */
37 #include <stdio.h> /* standard I/O library */
38 #include <errno.h> /* error definitions and routines */
39 #include <string.h> /* C strings library */
40 #include <stdlib.h> /* C standard library */
46 void ClientEcho(FILE * filein, int socket);
47 void SigTERM_hand(int sig);
50 int main(int argc, char *argv[])
53 * Variables definition
56 struct sockaddr_in dst_addr;
58 * Input section: decode parameters passed in the calling
61 opterr = 0; /* don't want writing to stderr */
62 while ( (i = getopt(argc, argv, "h")) != -1) {
68 printf("Wrong -h option use\n");
72 case '?': /* unrecognized options */
73 printf("Unrecognized options -%c\n",optopt);
75 default: /* should not reached */
79 /* ***********************************************************
81 * Options processing completed
85 * ***********************************************************/
87 if ( (sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
88 perror("Socket creation error");
91 /* initialize address */
92 memset((void *) &dst_addr, 0, sizeof(dst_addr)); /* clear address */
93 dst_addr.sin_family = AF_INET; /* address type is INET */
94 dst_addr.sin_port = htons(7); /* echo port is 7 */
95 /* build address using inet_pton */
96 if ( (inet_pton(AF_INET, argv[optind], &dst_addr.sin_addr)) <= 0) {
97 perror("Address creation error");
100 connect(sock, (struct sockaddr *) &dst_addr, sizeof(dst_addr));
101 /* do read/write operations */
102 ClientEcho(stdin, sock);
107 * routine to print usage info and exit
110 printf("Take daytime from a remote host \n");
112 printf(" daytime [-h] [-v] [host in dotted decimal form] \n");
113 // printf(" -v set verbosity on\n");
114 printf(" -r require reset on closing\n");
115 printf(" -h print this help\n");
119 void ClientEcho(FILE * filein, int socket)
121 char sendbuff[MAXLINE+1], recvbuff[MAXLINE+1];
123 /* initialize file descriptor set */
125 if (fgets(sendbuff, MAXLINE, filein) == NULL) {
126 return; /* if no input just return */
127 } else { /* else we have to write to socket */
128 nwrite = write(socket, sendbuff, strlen(sendbuff));
129 if (nwrite < 0) { /* on error stop */
130 printf("Errore in scrittura: %s", strerror(errno));
134 nread = read(socket, recvbuff, strlen(sendbuff));
135 if (nread < 0) { /* error condition, stop client */
136 printf("Errore in lettura: %s\n", strerror(errno));
139 recvbuff[nread] = 0; /* else read is ok, write on stdout */
140 if (fputs(recvbuff, stdout) == EOF) {
141 perror("Errore in scrittura su terminale");