Aggiunta semop
[gapil.git] / sources / ElemDaytimeTCPServer.c
1 /* ElemDaytimeTCPServer.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 daytimed: 
22  * Elementary TCP server for daytime service (port 13)
23  *
24  * Author: Simone Piccardi
25  * Apr. 2001
26  *
27  * Usage: daytimed -h give all info
28  *
29  * $Id: ElemDaytimeTCPServer.c,v 1.3 2001/09/09 22:45:34 piccardi Exp $ 
30  *
31  ****************************************************************/
32 /* 
33  * Include needed headers
34  */
35 #include <sys/types.h>   /* predefined types */
36 #include <unistd.h>      /* include unix standard library */
37 #include <arpa/inet.h>   /* IP addresses conversion utiliites */
38 #include <sys/socket.h>  /* socket library */
39 #include <stdio.h>       /* include standard I/O library */
40 #include <time.h>
41
42 #define MAXLINE 80
43 #define BACKLOG 10
44 /* Program begin */
45 void usage(void);
46 int main(int argc, char *argv[])
47 {
48 /* 
49  * Variables definition  
50  */
51     int list_fd, conn_fd;
52     int i;
53     struct sockaddr_in serv_add;
54     char buffer[MAXLINE];
55     time_t timeval;
56     /*
57      * Input section: decode parameters passed in the calling 
58      * Use getopt function
59      */
60     opterr = 0;  /* don't want writing to stderr */
61     while ( (i = getopt(argc, argv, "h")) != -1) {
62         switch (i) {
63         /* 
64          * Handling options 
65          */ 
66         case 'h':  
67             printf("Wrong -h option use\n");
68             usage();
69             return(0);
70             break;
71         case '?':   /* unrecognized options */
72             printf("Unrecognized options -%c\n",optopt);
73             usage();
74         default:    /* should not reached */
75             usage();
76         }
77     }
78     /* ***********************************************************
79      * 
80      *           Options processing completed
81      *
82      *                Main code beginning
83      * 
84      * ***********************************************************/
85     /* create socket */
86     if ( (list_fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
87         perror("Socket creation error");
88         exit(-1);
89     }
90     /* initialize address */
91     memset((void *)&serv_add, 0, sizeof(serv_add)); /* clear server address */
92     serv_add.sin_family = AF_INET;                  /* address type is INET */
93     serv_add.sin_port = htons(13);                  /* daytime port is 13 */
94     serv_add.sin_addr.s_addr = htonl(INADDR_ANY);   /* connect from anywhere */
95     /* bind socket */
96     if (bind(list_fd, (struct sockaddr *)&serv_add, sizeof(serv_add)) < 0) {
97         perror("bind error");
98         exit(-1);
99     }
100     /* listen on socket */
101     if (listen(list_fd, BACKLOG) < 0 ) {
102         perror("listen error");
103         exit(-1);
104     }
105     /* write daytime to client */
106     while (1) {
107         if ( (conn_fd = accept(list_fd, (struct sockaddr *) NULL, NULL)) <0 ) {
108             perror("accept error");
109             exit(-1);
110         }
111         timeval = time(NULL);
112         snprintf(buffer, sizeof(buffer), "%.24s\r\n", ctime(&timeval));
113         if ( (write(conn_fd, buffer, strlen(buffer))) < 0 ) {
114             perror("write error");
115             exit(-1);
116         }
117         close(conn_fd);
118     }
119
120     /* normal exit */
121     exit(0);
122 }
123 /*
124  * routine to print usage info and exit
125  */
126 void usage(void) {
127     printf("Simple daytime server\n");
128     printf("Usage:\n");
129     printf("  daytimed [-h] \n");
130     printf("  -h           print this help\n");
131     exit(1);
132 }