ALcune correzioni sparse, risistemati i commenti interni delle varie
[gapil.git] / sources / TCP_echo_first.c
index 626d1964384a4237e0ff219b2b7365f3cd18184a..089bd67c7ebb0839a08da77c127b37bb67921034 100644 (file)
@@ -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
  * 
  * 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
  */
 /****************************************************************
  *
  */
 /****************************************************************
  *
- * Program ElemEchoTCPClient.c
+ * Program TCP_echo_first.c (former ElemEchoTCPClient)
  * Simple TCP client for echo service (port 7)
  * 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
  *
  *
  * 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)); 
     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);
     }
        recvbuff[nread] = 0;
        fputs(recvbuff, stdout);
     }