Un po' di materiale su {{{splice}}} e inizio della ripulitura degli
[gapil.git] / sources / TCP_daytime.c
1 /* TCP_daytime.c
2  * 
3  * Copyright (C) 2001 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 daytime: 
22  * Elementary TCP client for daytime service (port 13)
23  *
24  * Author: Simone Piccardi
25  * Apr. 2001
26  *
27  * Usage: daytime -h give all info's
28  *
29  ****************************************************************/
30 /* 
31  * Include needed headers
32  */
33 #include <sys/types.h>   /* primitive system data types */
34 #include <unistd.h>      /* unix standard library */
35 #include <arpa/inet.h>   /* IP addresses conversion utiliites */
36 #include <sys/socket.h>  /* socket constants, types and functions */
37 #include <stdio.h>       /* standard I/O library */
38
39 #define MAXLINE 80
40 /* Program begin */
41 void usage(void);
42 int main(int argc, char *argv[])
43 {
44 /* 
45  * Variables definition  
46  */
47     int sock_fd;
48     int i, nread;
49     struct sockaddr_in serv_add;
50     char buffer[MAXLINE];
51     /*
52      * Input section: decode parameters passed in the calling 
53      * Use getopt function
54      */
55     opterr = 0;  /* don't want writing to stderr */
56     while ( (i = getopt(argc, argv, "h")) != -1) {
57         switch (i) {
58         /* 
59          * Handling options 
60          */ 
61         case 'h':  
62             printf("Wrong -h option use\n");
63             usage();
64             return(0);
65             break;
66         case '?':   /* unrecognized options */
67             printf("Unrecognized options -%c\n",optopt);
68             usage();
69         default:    /* should not reached */
70             usage();
71         }
72     }
73     /* ***********************************************************
74      * 
75      *           Options processing completed
76      *
77      *                Main code beginning
78      * 
79      * ***********************************************************/
80     /* create socket */
81     if ( (sock_fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
82         perror("Socket creation error");
83         return -1;
84     }
85     /* initialize address */
86     memset((void *) &serv_add, 0, sizeof(serv_add)); /* clear server address */
87     serv_add.sin_family = AF_INET;                   /* address type is INET */
88     serv_add.sin_port = htons(13);                   /* daytime port is 13 */
89     /* build address using inet_pton */
90     if ( (inet_pton(AF_INET, argv[optind], &serv_add.sin_addr)) <= 0) {
91         perror("Address creation error");
92         return -1;
93     }
94     /* extablish connection */
95     if (connect(sock_fd, (struct sockaddr *)&serv_add, sizeof(serv_add)) < 0) {
96         perror("Connection error");
97         return -1;
98     }
99     /* read daytime from server */
100     while ( (nread = read(sock_fd, buffer, MAXLINE)) > 0) {
101         buffer[nread]=0;
102         if (fputs(buffer, stdout) == EOF) {          /* write daytime */
103             perror("fputs error");
104             return -1;
105         }
106     }
107     /* error on read */
108     if (nread < 0) {
109         perror("Read error");
110         return -1;
111     }
112     /* normal exit */
113     return 0;
114 }
115 /*
116  * routine to print usage info and exit
117  */
118 void usage(void) {
119     printf("Take daytime from a remote host \n");
120     printf("Usage:\n");
121     printf("  daytime [-h] [-v] [host in dotted decimal form] \n");
122 //    printf("  -v         set verbosity on\n");
123     printf("  -h           print this help\n");
124     exit(1);
125 }