/*
- * $Id: ACLChecklist.cci,v 1.1 2003/05/17 17:35:03 hno Exp $
+ * $Id: ACLChecklist.cci,v 1.2 2003/05/19 09:11:31 robertc Exp $
*
* DEBUG: none
* AUTHOR: Henrik Nordstrom
*
*/
-inline void matchAclListFast(const acl_list * list)
+void
+ACLChecklist::matchAclListFast(const acl_list * list)
{
matchAclList(list, true);
- inline void matchAclListSlow(const acl_list * list) {
- matchAclList(list, false);
+}
+
+void
+ACLChecklist::matchAclListSlow(const acl_list * list)
+{
+ matchAclList(list, false);
+}
/*
- * $Id: ACLChecklist.h,v 1.9 2003/05/17 17:35:03 hno Exp $
+ * $Id: ACLChecklist.h,v 1.10 2003/05/19 09:11:31 robertc Exp $
*
*
* SQUID Web Proxy Cache http://www.squid-cache.org/
void nonBlockingCheck(PF * callback, void *callback_data);
void checkCallback(allow_t answer);
- void matchAclListFast(const acl_list * list);
- void matchAclListSlow(const acl_list * list);
+ void _SQUID_INLINE_ matchAclListFast(const acl_list * list);
+ void _SQUID_INLINE_ matchAclListSlow(const acl_list * list);
ConnStateData *conn();
void conn(ConnStateData *);
int authenticated();
const char *ident);
SQUIDCEXTERN int aclCheckFast(const acl_access *A, ACLChecklist *);
+#ifdef _USE_INLINE_
+#include "ACLChecklist.cci"
+#endif
+
#endif /* SQUID_ACLCHECKLIST_H */
/*
- * $Id: DelayVector.cc,v 1.6 2003/05/15 07:06:24 robertc Exp $
+ * $Id: DelayVector.cc,v 1.7 2003/05/19 09:11:30 robertc Exp $
*
* DEBUG: section 77 Delay Pools
* AUTHOR: Robert Collins <robertc@squid-cache.org>
DelayVector::DelayVector()
{
- DelayPools::RegisterForUpdates (this);
+ DelayPools::registerForUpdates (this);
}
DelayVector::~DelayVector()
{
- DelayPools::DeregisterForUpdates (this);
+ DelayPools::deregisterForUpdates (this);
}
void