Versione funzionante di un CGI che produce PNG di codici a barre.
[gapil.git] / sources / ElemEchoTCPServer.c
1 /* ElemEchoTCPServer.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 echod 
22  * Elementary TCP server for echo service (port 7)
23  *
24  * Author: Simone Piccardi
25  * Jun. 2001
26  *
27  * Usage: echod -h give all info
28  *
29  * $Id: ElemEchoTCPServer.c,v 1.3 2001/09/09 17:39:15 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 #include "wrappers.h"
43
44 #define BACKLOG 10
45 #define MAXLINE 256
46
47 /* Subroutines declaration */
48 void usage(void);
49 void ServEcho(int sockfd);
50 /* Program beginning */
51 int main(int argc, char *argv[])
52 {
53 /* 
54  * Variables definition  
55  */
56     int list_fd, conn_fd;
57     pid_t pid;
58     struct sockaddr_in serv_add;
59     /*
60      * Input section: decode parameters passed in the calling 
61      * Use getopt function
62      */
63     int i;
64     opterr = 0;  /* don't want writing to stderr */
65     while ( (i = getopt(argc, argv, "h")) != -1) {
66         switch (i) {
67         /* 
68          * Handling options 
69          */ 
70         case 'h':  
71             printf("Wrong -h option use\n");
72             usage();
73             return(0);
74             break;
75         case '?':   /* unrecognized options */
76             printf("Unrecognized options -%c\n",optopt);
77             usage();
78         default:    /* should not reached */
79             usage();
80         }
81     }
82     /* ***********************************************************
83      * 
84      *           Options processing completed
85      *
86      *                Main code beginning
87      * 
88      * ***********************************************************/
89     /* create socket */
90     if ( (list_fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
91         perror("Socket creation error");
92         exit(-1);
93     }
94     /* initialize address */
95     memset((void *)&serv_add, 0, sizeof(serv_add)); /* clear server address */
96     serv_add.sin_family = AF_INET;                  /* address type is INET */
97     serv_add.sin_port = htons(7);                   /* echo port is 7 */
98     serv_add.sin_addr.s_addr = htonl(INADDR_ANY);   /* connect from anywhere */
99     /* bind socket */
100     if (bind(list_fd, (struct sockaddr *)&serv_add, sizeof(serv_add)) < 0) {
101         perror("bind error");
102         exit(-1);
103     }
104     /* listen on socket */
105     if (listen(list_fd, BACKLOG) < 0 ) {
106         perror("listen error");
107         exit(-1);
108     }
109     /* handle echo to client */
110     while (1) {
111         /* accept connection */
112         if ( (conn_fd = accept(list_fd, NULL, NULL)) < 0) {
113             perror("accept error");
114             exit(-1);
115         }
116         /* fork to handle connection */
117         if ( (pid = fork()) < 0 ){
118             perror("fork error");
119             exit(-1);
120         }
121         if (pid == 0) {      /* child */
122             close(list_fd);          /* close listening socket */   
123             SockEcho(conn_fd);       /* handle echo */
124             exit(0);
125         } else {             /* parent */
126             close(conn_fd);          /* close connected socket */
127         }
128     }
129     /* normal exit, never reached */
130     exit(0);
131 }
132 /*
133  * routine to print usage info and exit
134  */
135 void usage(void) {
136     printf("Elementary echo server\n");
137     printf("Usage:\n");
138     printf("  echod [-h] \n");
139     printf("  -h           print this help\n");
140     exit(1);
141 }
142 /*
143  * routine to handle echo for connection
144  */
145 void ServEcho(int sockfd) {
146     char buffer[MAXLINE];
147     int nread, nwrite;
148     
149     /* main loop, reading 0 char means client close connection */
150     while ( (nread = read(sockfd, buffer, MAXLINE)) != 0) {
151         printf("Letti %d bytes, %s ", nread, buffer);
152         nwrite = SockWrite(sockfd, buffer, nread);
153     }
154     return;
155 }