X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=sources%2FElemEchoTCPServer.c;h=7df6fed0f6216f6c12b63c310854c7f520e474a8;hp=f7a1a41eaa475f7a20c84b6541849e4086433a85;hb=6e3e4f4d9d97e5643f85a13904412f4f4e46631f;hpb=bf451665e088e4e88ac18f7f81ff7850be8734cc 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;