From 5772de2e8a5e4efed48f3cfb61ffc941754c4590 Mon Sep 17 00:00:00 2001 From: hackbard Date: Fri, 10 Jan 2003 15:29:45 +0000 Subject: [PATCH] added MAX_SIZE 1400 --- stream.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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); } -- 2.20.1