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