--- projects/cms/source/host/c++/socket++-1.10/sockstream.C 2001/02/26 15:01:39 1.1 +++ projects/cms/source/host/c++/socket++-1.10/sockstream.C 2001/03/15 20:26:47 1.2 @@ -51,9 +51,14 @@ EXTERN_C_BEGIN #include EXTERN_C_END -#ifndef BUFSIZ -# define BUFSIZ 1024 -#endif +// MODIFED BY ASH - Force the buffer size to 8192 for the +// moment. This is VERY BAD, but fixes the 1024 char limit +// on UDP packets. Will need to look further into the problem +// which exists in /usr/include/iso/stdio_iso.h + +// #ifndef BUFSIZ +# define BUFSIZ 8192 +// #endif #ifdef FD_ZERO # undef FD_ZERO // bzero causes so much trouble to us