From: rousskov <> Date: Fri, 6 Mar 1998 08:30:58 +0000 (+0000) Subject: -Added pools for MEM_HTTP_HDR_RANGE_SPEC and MEM_HTTP_HDR_RANGE X-Git-Tag: SQUID_3_0_PRE1~3904 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eed12adc78cf167e598b94d36b6bfd36e28bbccd;p=thirdparty%2Fsquid.git -Added pools for MEM_HTTP_HDR_RANGE_SPEC and MEM_HTTP_HDR_RANGE --- diff --git a/src/mem.cc b/src/mem.cc index d985df89eb..ce57b47e2f 100644 --- a/src/mem.cc +++ b/src/mem.cc @@ -1,6 +1,6 @@ /* - * $Id: mem.cc,v 1.11 1998/03/05 00:42:59 wessels Exp $ + * $Id: mem.cc,v 1.12 1998/03/06 01:30:58 rousskov Exp $ * * DEBUG: section 13 High Level Memory Pool Management * AUTHOR: Harvest Derived @@ -127,6 +127,8 @@ memInit(void) memDataInit(MEM_HTTPSTATEDATA, "HttpStateData", sizeof(HttpStateData), 0); memDataInit(MEM_HTTPREPLY, "http_reply", sizeof(http_reply), 0); memDataInit(MEM_HTTP_HDR_CC, "HttpHdrCc", sizeof(HttpHdrCc), 0); + memDataInit(MEM_HTTP_HDR_RANGE_SPEC, "HttpHdrRangeSpec", sizeof(HttpHdrRangeSpec), 0); + memDataInit(MEM_HTTP_HDR_RANGE, "HttpHdrRange", sizeof(HttpHdrRange), 0); memDataInit(MEM_ICPUDPDATA, "icpUdpData", sizeof(icpUdpData), 0); memDataInit(MEM_ICP_COMMON_T, "icp_common_t", sizeof(icp_common_t), 0); memDataInit(MEM_ICP_PING_DATA, "icp_ping_data", sizeof(icp_ping_data), 0);