X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=sources%2FElemEchoTCPClient.c;h=ac1d9910a4a89ca62e8dd3da8c7b701838853934;hp=97eba1957a0db7b0a69a91d630392514128c8e43;hb=72b2686a82a62331891ca894a6c3b476365363fc;hpb=eeae53d349031efdb209921e45302ecfd4c29638 diff --git a/sources/ElemEchoTCPClient.c b/sources/ElemEchoTCPClient.c index 97eba19..ac1d991 100644 --- a/sources/ElemEchoTCPClient.c +++ b/sources/ElemEchoTCPClient.c @@ -1,6 +1,24 @@ +/* ElemEchoTCPClient.c + * + * Copyright (C) 2001 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 + * the Free Software Foundation; either version 2 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ /**************************************************************** * - * Program SimpleEchoTCPClient: + * Program ElemEchoTCPClient.c * Simple TCP client for echo service (port 7) * * Author: Simone Piccardi @@ -8,7 +26,7 @@ * * Usage: echo -h give all info's * - * $Id: ElemEchoTCPClient.c,v 1.1 2001/06/18 21:46:14 piccardi Exp $ + * $Id: ElemEchoTCPClient.c,v 1.4 2002/12/03 11:06:05 piccardi Exp $ * ****************************************************************/ /* @@ -20,11 +38,9 @@ #include /* socket library */ #include /* include standard I/O library */ -#include "wrappers.h" - #define MAXLINE 256 void usage(void); -void EchoClient(FILE * filein, int socket); +void ClientEcho(FILE * filein, int socket); /* Program begin */ int main(int argc, char *argv[]) @@ -99,7 +115,7 @@ void usage(void) { exit(1); } -void EchoClient(FILE * filein, int socket) +void ClientEcho(FILE * filein, int socket) { char sendbuff[MAXLINE], recvbuff[MAXLINE]; int nread;