[complement-svn] SF.net SVN: complement: [1788] trunk/complement/explore
Status: Pre-Alpha
Brought to you by:
complement
From: <com...@us...> - 2007-11-21 10:26:13
|
Revision: 1788 http://complement.svn.sourceforge.net/complement/?rev=1788&view=rev Author: complement Date: 2007-11-21 02:26:11 -0800 (Wed, 21 Nov 2007) Log Message: ----------- UDP require larger buffer, because it should take all message at once [max 65535]. libsockios: Version 1.14.1. Modified Paths: -------------- trunk/complement/explore/include/sockios/sockstream.cc trunk/complement/explore/lib/sockios/ChangeLog trunk/complement/explore/lib/sockios/Makefile.inc Modified: trunk/complement/explore/include/sockios/sockstream.cc =================================================================== --- trunk/complement/explore/include/sockios/sockstream.cc 2007-11-19 16:50:55 UTC (rev 1787) +++ trunk/complement/explore/include/sockios/sockstream.cc 2007-11-21 10:26:11 UTC (rev 1788) @@ -338,7 +338,7 @@ } if ( _bbuf == 0 ) { - _M_allocate_block( t == sock_base::sock_stream ? 0xb00 : 0xffff ); + _M_allocate_block( t == sock_base::sock_stream ? 0xb00 : 0x1ffff ); } if ( _bbuf == 0 ) { Modified: trunk/complement/explore/lib/sockios/ChangeLog =================================================================== --- trunk/complement/explore/lib/sockios/ChangeLog 2007-11-19 16:50:55 UTC (rev 1787) +++ trunk/complement/explore/lib/sockios/ChangeLog 2007-11-21 10:26:11 UTC (rev 1788) @@ -1,3 +1,10 @@ +2007-11-21 Petr Ovtchenkov <pt...@is...> + + * sockstream.cc: UDP require larger buffer, because it should + take all message at once [max 65535]. + + * libsockios: Version 1.14.1. + 2007-11-19 Petr Ovtchenkov <pt...@is...> * sockmgr.h, sockmgr.cc: remove out-of-date sockmgr_sream_MP_SELECT; Modified: trunk/complement/explore/lib/sockios/Makefile.inc =================================================================== --- trunk/complement/explore/lib/sockios/Makefile.inc 2007-11-19 16:50:55 UTC (rev 1787) +++ trunk/complement/explore/lib/sockios/Makefile.inc 2007-11-21 10:26:11 UTC (rev 1788) @@ -3,7 +3,7 @@ LIBNAME = sockios MAJOR = 1 MINOR = 14 -PATCH = 0 +PATCH = 1 SRC_CC = _sockstream.cc _sockmgr.cc SRC_C = freebsd/getaddrinfo.c \ freebsd/ns_parse.c \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |