--------------------- PatchSet 2900 Date: 2001/08/29 19:40:17 Author: adri Branch: diskio Tag: (none) Log: Stupid me - I didn't totally convert over the HTTP code to use the new storeClientCopy() optimisation, so bits of buffers were being copied over in transit. I _thought_ i saw bits of slashdot postings overlapping when using this squid. :-) Adrian Members: src/client_side.c:1.33.2.1->1.33.2.2 Index: squid/src/client_side.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/client_side.c,v retrieving revision 1.33.2.1 retrieving revision 1.33.2.2 diff -u -r1.33.2.1 -r1.33.2.2 --- squid/src/client_side.c 16 Aug 2001 00:07:04 -0000 1.33.2.1 +++ squid/src/client_side.c 29 Aug 2001 19:40:17 -0000 1.33.2.2 @@ -1,6 +1,6 @@ /* - * $Id: client_side.c,v 1.33.2.1 2001/08/16 00:07:04 adri Exp $ + * $Id: client_side.c,v 1.33.2.2 2001/08/29 19:40:17 adri Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -488,7 +488,7 @@ http->out.offset + size, http->out.offset, CLIENT_SOCK_SZ, - buf, + NULL, clientHandleIMSReply, http); return; @@ -539,7 +539,7 @@ http->out.offset, http->out.offset, CLIENT_SOCK_SZ, - buf, + NULL, clientSendMoreData, http); } else { @@ -1441,7 +1441,7 @@ http->out.offset + size, http->out.offset, CLIENT_SOCK_SZ, - buf, + NULL, clientCacheHit, http); } @@ -1902,7 +1902,7 @@ http->out.offset + size, http->out.offset, CLIENT_SOCK_SZ, - buf, + NULL, clientSendMoreData, http); return;