]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Make ACLChecklist::matchAclListSlow a private member function. Not part of the public API
authorhno <>
Mon, 18 Jun 2007 03:39:49 +0000 (03:39 +0000)
committerhno <>
Mon, 18 Jun 2007 03:39:49 +0000 (03:39 +0000)
src/ACLChecklist.cc
src/ACLChecklist.cci
src/ACLChecklist.h

index 6b88879f529fe3b178482a4ff0d54b6fa3e3fa7c..2a5d4c23e16d7075dd2f147c1d9891cd85a02fbc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: ACLChecklist.cc,v 1.38 2007/05/09 09:07:38 wessels Exp $
+ * $Id: ACLChecklist.cc,v 1.39 2007/06/17 21:39:49 hno Exp $
  *
  * DEBUG: section 28    Access Control
  * AUTHOR: Duane Wessels
@@ -275,6 +275,12 @@ ACLChecklist::checkCallback(allow_t answer)
     delete this;
 }
 
+void
+ACLChecklist::matchAclListSlow(const acl_list * list)
+{
+    matchAclList(list, false);
+}
+
 void
 ACLChecklist::matchAclList(const acl_list * head, bool const fast)
 {
index 2e8651a8100c8a9e8c1376cf001bc87212cd58e0..aa253b95db37fc79666c7eeef0fa350c8e0b18eb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: ACLChecklist.cci,v 1.4 2007/04/25 11:30:18 adrian Exp $
+ * $Id: ACLChecklist.cci,v 1.5 2007/06/17 21:39:49 hno Exp $
  *
  * DEBUG: section 28    Access Control
  * AUTHOR: Henrik Nordstrom
@@ -39,8 +39,3 @@ ACLChecklist::matchAclListFast(const acl_list * list)
     return finished();
 }
 
-void
-ACLChecklist::matchAclListSlow(const acl_list * list)
-{
-    matchAclList(list, false);
-}
index 6228e03cc6d167ff28ce4a7f3c31b2f5cc2341b2..3a7a188fbdb55074e1e43a40866f71465d2e5b1b 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: ACLChecklist.h,v 1.24 2007/05/09 07:36:24 wessels Exp $
+ * $Id: ACLChecklist.h,v 1.25 2007/06/17 21:39:49 hno Exp $
  *
  *
  * SQUID Web Proxy Cache          http://www.squid-cache.org/
@@ -97,7 +97,6 @@ class NullState : public AsyncState
     void checkCallback(allow_t answer);
     void preCheck();
     _SQUID_INLINE_ bool matchAclListFast(const acl_list * list);
-    _SQUID_INLINE_ void matchAclListSlow(const acl_list * list);
     ConnStateData::Pointer conn();
     void conn(ConnStateData::Pointer);
     int authenticated();
@@ -143,6 +142,7 @@ class NullState : public AsyncState
 
 private:
     void matchAclList(const acl_list * list, bool const fast);
+    void matchAclListSlow(const acl_list * list);
     CBDATA_CLASS(ACLChecklist);
     ConnStateData::Pointer conn_;      /* hack for ident and NTLM */
     bool async_;