X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=sources%2FTCP_echo_first.c;h=089bd67c7ebb0839a08da77c127b37bb67921034;hp=626d1964384a4237e0ff219b2b7365f3cd18184a;hb=eefeeaee57a56cfe1ff8c02a26c44d6f87f1368c;hpb=d71832779a9507989908bf2d524db6809745a04f;ds=inline diff --git a/sources/TCP_echo_first.c b/sources/TCP_echo_first.c index 626d196..089bd67 100644 --- a/sources/TCP_echo_first.c +++ b/sources/TCP_echo_first.c @@ -1,6 +1,6 @@ -/* TCP_echo1.c +/* TCP_echo_first.c * - * Copyright (C) 2001 Simone Piccardi + * Copyright (C) 2001-2003 Simone Piccardi * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,15 +18,16 @@ */ /**************************************************************** * - * Program ElemEchoTCPClient.c + * Program TCP_echo_first.c (former ElemEchoTCPClient) * Simple TCP client for echo service (port 7) + * First version, broken in many ways, that will be corrected later * * Author: Simone Piccardi * Jun. 2001 * * Usage: echo -h give all info's * - * $Id: TCP_echo_first.c,v 1.1 2003/06/19 12:08:11 piccardi Exp $ + * $Id$ * ****************************************************************/ /* @@ -121,7 +122,7 @@ void ClientEcho(FILE * filein, int socket) int nread; while (fgets(sendbuff, MAXLINE, filein) != NULL) { FullWrite(socket, sendbuff, strlen(sendbuff)); - nread = FullRead(socket, recvbuff, strlen(sendbuff)); + nread = read(socket, recvbuff, strlen(sendbuff)); recvbuff[nread] = 0; fputs(recvbuff, stdout); }