--------------------- PatchSet 4047 Date: 2007/02/14 06:35:56 Author: rousskov Branch: squid3-icap Tag: (none) Log: - Buffer size constants are now maintained by BodyPipe. Members: src/ICAP/ICAPElements.h:1.1.2.2->1.1.2.3 Index: squid3/src/ICAP/ICAPElements.h =================================================================== RCS file: /cvsroot/squid-sf//squid3/src/ICAP/ICAPElements.h,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -r1.1.2.2 -r1.1.2.3 --- squid3/src/ICAP/ICAPElements.h 29 Sep 2006 23:27:15 -0000 1.1.2.2 +++ squid3/src/ICAP/ICAPElements.h 14 Feb 2007 06:35:56 -0000 1.1.2.3 @@ -1,6 +1,6 @@ /* - * $Id: ICAPElements.h,v 1.1.2.2 2006/09/29 23:27:15 dwsquid Exp $ + * $Id: ICAPElements.h,v 1.1.2.3 2007/02/14 06:35:56 rousskov Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -44,9 +44,6 @@ typedef enum { methodNone, methodReqmod, methodRespmod, methodOptions } Method; typedef enum { pointNone, pointPreCache, pointPostCache } VectPoint; - // recommended initial size and max capacity for MsgPipe buffer - enum { MsgPipeBufSizeMin = (4*1024), MsgPipeBufSizeMax = SQUID_TCP_SO_RCVBUF }; - static const char *crlf; static const char *methodStr(ICAP::Method); static const char *vectPointStr(ICAP::VectPoint);