From: hackbard Date: Fri, 10 Jan 2003 15:29:45 +0000 (+0000) Subject: added MAX_SIZE 1400 X-Git-Url: https://hackdaworld.org/gitweb/?p=my-code%2Fivac.git;a=commitdiff_plain;h=5772de2e8a5e4efed48f3cfb61ffc941754c4590 added MAX_SIZE 1400 --- diff --git a/stream.c b/stream.c index 1a150e1..2320b13 100644 --- a/stream.c +++ b/stream.c @@ -26,6 +26,9 @@ /* read, close */ #include +/* defines ... */ +#define MAX_SIZE 1400 + int main(int argc, char *argv[]) { int listen_fd, send_fd; struct sockaddr_in local_addr, remote_addr; @@ -68,7 +71,7 @@ int main(int argc, char *argv[]) { /* send stuff .... */ read_bytes=1; while(read_bytes>0) { - unsigned char buf[1000]; + unsigned char buf[MAX_SIZE]; read_bytes=read(0,buf,sizeof(buf)); send_bytes=send(send_fd,buf,read_bytes,0); }