X-Git-Url: https://hackdaworld.org/gitweb/?p=my-code%2Fivac.git;a=blobdiff_plain;f=stream.c;h=2320b13e2c63ef98e8a3570a87376ac3b310c0b5;hp=1a150e1a8f8575a6e74676cbc4a4dbfa8db08a33;hb=5772de2e8a5e4efed48f3cfb61ffc941754c4590;hpb=4791259dd5f72141689d1dca2401b80661ea1405 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); }