]> git.ipfire.org Git - thirdparty/squid.git/blob - src/auth/Acl.h
Removed "extern" and SQUIDCEXTERN keyword from regular functions (they have extern...
[thirdparty/squid.git] / src / auth / Acl.h
1 #ifndef SQUID_AUTH_ACL_H
2 #define SQUID_AUTH_ACL_H
3
4 #if USE_AUTH
5
6 #include "acl/Acl.h"
7
8 // ACL-related code used by authentication-related code. This code is not in
9 // auth/Gadgets to avoid making auth/libauth dependent on acl/libstate because
10 // acl/libstate already depends on auth/libauth.
11
12 class ACLChecklist;
13 /// \ingroup AuthAPI
14 allow_t AuthenticateAcl(ACLChecklist *ch);
15
16 #endif /* USE_AUTH */
17 #endif /* SQUID_AUTH_ACL_H */