X-Git-Url: https://gapil.gnulinux.it/gitweb/?a=blobdiff_plain;f=sources%2FElemEchoTCPServer.c;h=7df6fed0f6216f6c12b63c310854c7f520e474a8;hb=d99b4995b23505a9afde30adf3a716aa7a55f0e9;hp=f7a1a41eaa475f7a20c84b6541849e4086433a85;hpb=eeae53d349031efdb209921e45302ecfd4c29638;p=gapil.git diff --git a/sources/ElemEchoTCPServer.c b/sources/ElemEchoTCPServer.c index f7a1a41..7df6fed 100644 --- a/sources/ElemEchoTCPServer.c +++ b/sources/ElemEchoTCPServer.c @@ -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;