Sistemati gli esempi e riarrangiate le pagine
[gapil.git] / sources / ElemEchoTCPServer.c
index f7a1a41eaa475f7a20c84b6541849e4086433a85..7df6fed0f6216f6c12b63c310854c7f520e474a8 100644 (file)
@@ -8,7 +8,7 @@
  *
  * Usage: echod
  *
- * $Id: ElemEchoTCPServer.c,v 1.1 2001/06/18 21:46:14 piccardi Exp $ 
+ * $Id: ElemEchoTCPServer.c,v 1.2 2001/06/20 22:03:37 piccardi Exp $ 
  *
  ****************************************************************/
 /* 
@@ -28,7 +28,7 @@
 
 /* Subroutines declaration */
 void usage(void);
-void SockEcho(int sockfd);
+void ServEcho(int sockfd);
 /* Program beginning */
 int main(int argc, char *argv[])
 {
@@ -124,7 +124,7 @@ void usage(void) {
 /*
  * routine to handle echo for connection
  */
-void SockEcho(int sockfd) {
+void ServEcho(int sockfd) {
     char buffer[MAXLINE];
     int nread, nwrite;