--------------------- PatchSet 2902 Date: 2001/08/30 04:08:42 Author: adri Branch: diskio Tag: (none) Log: Up the CLIENT_SOCK_SZ to 64k. This change was done to test whether the current code base would deal correctly with small buffers being returned when we're not at the end of the object. Obviously the code does (which is a good thing!), so I'm going to up this. There won't be any performance increase/decrease with this change, since the code in store_client.c is still throwing data over in 4k chunks. This gets us one step closer to having a more efficient storeRead() API. Members: src/defines.h:1.12.12.3->1.12.12.4 Index: squid/src/defines.h =================================================================== RCS file: /cvsroot/squid-sf//squid/src/defines.h,v retrieving revision 1.12.12.3 retrieving revision 1.12.12.4 diff -u -r1.12.12.3 -r1.12.12.4 --- squid/src/defines.h 20 Aug 2001 23:46:43 -0000 1.12.12.3 +++ squid/src/defines.h 30 Aug 2001 04:08:42 -0000 1.12.12.4 @@ -1,6 +1,6 @@ /* - * $Id: defines.h,v 1.12.12.3 2001/08/20 23:46:43 adri Exp $ + * $Id: defines.h,v 1.12.12.4 2001/08/30 04:08:42 adri Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -266,7 +266,7 @@ */ #define PEER_TCP_MAGIC_COUNT 10 -#define CLIENT_SOCK_SZ 4096 +#define CLIENT_SOCK_SZ 65536 #define URI_WHITESPACE_STRIP 0 #define URI_WHITESPACE_ALLOW 1