Un po' di materiale su {{{splice}}} e inizio della ripulitura degli
[gapil.git] / sources / UDP_echo_first.c
1 /* UDP_echo_first.c
2  * 
3  * Copyright (C) 2004 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 UDP_echo_first.c
22  * Simple UDP client for echo service (port 7)
23  * first version, no connected UDP socket
24  *
25  * Author: Simone Piccardi
26  * May 2004
27  *
28  * Usage: echo -h give all info's
29  *
30  ****************************************************************/
31 /* 
32  * Include needed headers
33  */
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 */
41
42 #include "macros.h"
43
44 #define MAXLINE 256
45 void usage(void);
46 void ClientEcho(FILE * filein, int socket, struct sockaddr_in *serv_add);
47 void SigTERM_hand(int sig);
48
49 /* Program begin */
50 int main(int argc, char *argv[])
51 {
52 /* 
53  * Variables definition  
54  */
55     int sock, i;
56     struct sockaddr_in serv_add;
57     /*
58      * Input section: decode parameters passed in the calling 
59      * Use getopt function
60      */
61     opterr = 0;  /* don't want writing to stderr */
62     while ( (i = getopt(argc, argv, "h")) != -1) {
63         switch (i) {
64         /* 
65          * Handling options 
66          */ 
67         case 'h':  
68             printf("Wrong -h option use\n");
69             usage();
70             return(1);
71             break;
72         case '?':   /* unrecognized options */
73             printf("Unrecognized options -%c\n",optopt);
74             usage();
75         default:    /* should not reached */
76             usage();
77         }
78     }
79     /* ***********************************************************
80      * 
81      *           Options processing completed
82      *
83      *                Main code beginning
84      * 
85      * ***********************************************************/
86     /* create socket */
87     if ( (sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
88         perror("Socket creation error");
89         return 1;
90     }
91     /* initialize address */
92     memset((void *) &serv_add, 0, sizeof(serv_add)); /* clear server address */
93     serv_add.sin_family = AF_INET;                   /* address type is INET */
94     serv_add.sin_port = htons(7);                    /* echo port is 7 */
95     /* build address using inet_pton */
96     if ( (inet_pton(AF_INET, argv[optind], &serv_add.sin_addr)) <= 0) {
97         perror("Address creation error");
98         return 1;
99     }
100     /* do read/write operations */
101     ClientEcho(stdin, sock, &serv_add);
102     /* normal exit */
103     return 0;
104 }
105 /*
106  * routine to print usage info and exit 
107  */
108 void usage(void) {
109     printf("Take daytime from a remote host \n");
110     printf("Usage:\n");
111     printf("  daytime [-h] [-v] [host in dotted decimal form] \n");
112 //    printf("  -v         set verbosity on\n");
113     printf("  -r           require reset on closing\n");
114     printf("  -h           print this help\n");
115     exit(1);
116 }
117
118 void ClientEcho(FILE * filein, int socket, struct sockaddr_in * serv_addr) 
119 {
120     char sendbuff[MAXLINE+1], recvbuff[MAXLINE+1];
121     int nread, nwrite; 
122     /* initialize file descriptor set */
123     while (1) {
124         if (fgets(sendbuff, MAXLINE, filein) == NULL) {
125             return;                /* if no input just return */
126         } else {                   /* else we have to write to socket */
127             nwrite = sendto(socket, sendbuff, strlen(sendbuff), 0,
128                             (struct sockaddr *) serv_addr, sizeof(*serv_addr));
129             if (nwrite < 0) {      /* on error stop */
130                 printf("Errore in scrittura: %s", strerror(errno));
131                 return;
132             }
133         }
134         nread = recvfrom(socket, recvbuff, strlen(sendbuff), 0, NULL, NULL); 
135         if (nread < 0) {  /* error condition, stop client */
136             printf("Errore in lettura: %s\n", strerror(errno));
137             return;
138         }
139         recvbuff[nread] = 0;   /* else read is ok, write on stdout */
140         if (fputs(recvbuff, stdout) == EOF) {
141             perror("Errore in scrittura su terminale");
142             return;
143         }
144     }
145 }