Merge branch 'master' of ssh://gapil.gnulinux.it/srv/git/gapil
[gapil.git] / sources / UDP_daytime.c
1 /* UDP_daytime.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 daytime: 
22  * Elementary UDP client for daytime service (port 13)
23  *
24  * Author: Simone Piccardi
25  * Mar. 2004
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 utilities */
36 #include <sys/socket.h>  /* socket constants, types and functions */
37 #include <stdio.h>       /* standard I/O library */
38 #include <stdlib.h>      /* C standard library */
39 #include <string.h>      /* C strings library */
40
41 #define MAXLINE 80
42 /* Program begin */
43 void usage(void);
44 int main(int argc, char *argv[])
45 {
46 /* 
47  * Variables definition  
48  */
49     int sock;
50     int i, nread;
51     struct sockaddr_in addr;
52     char buffer[MAXLINE];
53     /*
54      * Input section: decode parameters passed in the calling 
55      * Use getopt function
56      */
57     opterr = 0;  /* don't want writing to stderr */
58     while ( (i = getopt(argc, argv, "h")) != -1) {
59         switch (i) {
60         /* 
61          * Handling options 
62          */ 
63         case 'h':  
64             printf("Wrong -h option use\n");
65             usage();
66             return(0);
67             break;
68         case '?':   /* unrecognized options */
69             printf("Unrecognized options -%c\n",optopt);
70             usage();
71         default:    /* should not reached */
72             usage();
73         }
74     }
75     /* ***********************************************************
76      * 
77      *           Options processing completed
78      *
79      *                Main code beginning
80      * 
81      * ***********************************************************/
82     /* create socket */
83     if ( (sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
84         perror("Socket creation error");
85         return -1;
86     }
87     /* initialize address */
88     memset((void *) &addr, 0, sizeof(addr));    /* clear server address */
89     addr.sin_family = AF_INET;                  /* address type is INET */
90     addr.sin_port = htons(13);                  /* daytime port is 13 */
91     /* build address using inet_pton */
92     if ( (inet_pton(AF_INET, argv[optind], &addr.sin_addr)) <= 0) {
93         perror("Address creation error");
94         return -1;
95     }
96     /* send request packet */
97     nread = sendto(sock, NULL, 0, 0, (struct sockaddr *)&addr, sizeof(addr));
98     if (nread < 0) {
99         perror("Request error");
100         return -1;
101     }
102     nread = recvfrom(sock, buffer, MAXLINE, 0, NULL, NULL);
103     if (nread < 0) {
104         perror("Read error");
105         return -1;
106     }
107     /* print results */
108     if (nread > 0) {
109         buffer[nread]=0;
110         if (fputs(buffer, stdout) == EOF) {          /* write daytime */
111             perror("fputs error");
112             return -1;
113         }
114     }
115     /* normal exit */
116     return 0;
117 }
118 /*
119  * routine to print usage info and exit
120  */
121 void usage(void) {
122     printf("Take daytime from a remote host \n");
123     printf("Usage:\n");
124     printf("  daytime [-h] [-v] [host in dotted decimal form] \n");
125 //    printf("  -v         set verbosity on\n");
126     printf("  -h           print this help\n");
127     exit(1);
128 }