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 * Elementary TCP server for daytime service (port 13)
24 * Author: Simone Piccardi
27 * Usage: daytimed -h give all info
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 <time.h> /* date and time constants, types and functions */
39 #include <string.h> /* C strings library */
40 #include <stdlib.h> /* C standard library */
45 int main(int argc, char *argv[])
48 * Variables definition
51 int i, n, len, verbose=0;
52 struct sockaddr_in addr;
56 * Input section: decode parameters passed in the calling
59 opterr = 0; /* don't want writing to stderr */
60 while ( (i = getopt(argc, argv, "hv")) != -1) {
66 printf("Wrong -h option use\n");
73 case '?': /* unrecognized options */
74 printf("Unrecognized options -%c\n",optopt);
76 default: /* should not reached */
80 /* ***********************************************************
82 * Options processing completed
86 * ***********************************************************/
88 if ( (sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
89 perror("Socket creation error");
92 /* initialize address */
93 memset((void *)&addr, 0, sizeof(addr)); /* clear server address */
94 addr.sin_family = AF_INET; /* address type is INET */
95 addr.sin_port = htons(13); /* daytime port is 13 */
96 addr.sin_addr.s_addr = htonl(INADDR_ANY); /* connect from anywhere */
98 if (bind(sock, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
102 /* write daytime to client */
104 n = recvfrom(sock, buffer, MAXLINE, 0, (struct sockaddr *)&addr, &len);
106 perror("recvfrom error");
110 inet_ntop(AF_INET, &addr.sin_addr, buffer, sizeof(buffer));
111 printf("Request from host %s, port %d\n", buffer,
112 ntohs(addr.sin_port));
114 timeval = time(NULL);
115 snprintf(buffer, sizeof(buffer), "%.24s\r\n", ctime(&timeval));
116 n = sendto(sock, buffer, strlen(buffer), 0,
117 (struct sockaddr *)&addr, sizeof(addr));
119 perror("sendto error");
127 * routine to print usage info and exit
130 printf("Simple daytime server\n");
132 printf(" daytimed [-hv] \n");
133 printf(" -h print this help\n");
134 printf(" -v print request source on stdout\n");