--------------------- PatchSet 1922 Date: 2005/10/03 15:49:56 Author: dwsquid Branch: squid3-icap Tag: (none) Log: Dont see why icap_access_check needs to be a member of HttpStateData Members: src/http.cc:1.49.2.42->1.49.2.43 src/http.h:1.11.4.14->1.11.4.15 Index: squid3/src/http.cc =================================================================== RCS file: /cvsroot/squid-sf//squid3/src/http.cc,v retrieving revision 1.49.2.42 retrieving revision 1.49.2.43 diff -u -r1.49.2.42 -r1.49.2.43 --- squid3/src/http.cc 1 Oct 2005 05:53:51 -0000 1.49.2.42 +++ squid3/src/http.cc 3 Oct 2005 15:49:56 -0000 1.49.2.43 @@ -1,6 +1,6 @@ /* - * $Id: http.cc,v 1.49.2.42 2005/10/01 05:53:51 dwsquid Exp $ + * $Id: http.cc,v 1.49.2.43 2005/10/03 15:49:56 dwsquid Exp $ * * DEBUG: section 11 Hypertext Transfer Protocol (HTTP) * AUTHOR: Harvest Derived @@ -752,6 +752,7 @@ #if ICAP_CLIENT + ICAPAccessCheck *icap_access_check; if (icap_access_check = new ICAPAccessCheck(ICAPServiceRep::respmod, ICAPServiceRep::precache, request, reply, icapAclCheckDoneWrapper, this)) { icap_access_check->check(); icapAccessCheckPending = true; Index: squid3/src/http.h =================================================================== RCS file: /cvsroot/squid-sf//squid3/src/http.h,v retrieving revision 1.11.4.14 retrieving revision 1.11.4.15 diff -u -r1.11.4.14 -r1.11.4.15 --- squid3/src/http.h 1 Oct 2005 05:48:38 -0000 1.11.4.14 +++ squid3/src/http.h 3 Oct 2005 15:49:56 -0000 1.11.4.15 @@ -1,6 +1,6 @@ /* - * $Id: http.h,v 1.11.4.14 2005/10/01 05:48:38 dwsquid Exp $ + * $Id: http.h,v 1.11.4.15 2005/10/03 15:49:56 dwsquid Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -84,7 +84,6 @@ #if ICAP_CLIENT ICAPAnchor *icap; - ICAPAccessCheck *icap_access_check; void icapAclCheckDone(ICAPServiceRep::Pointer); bool icapAccessCheckPending; #endif