]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/forward.h
Fixed (missing DOC_END) and polished ftp_port documentation.
[thirdparty/squid.git] / src / acl / forward.h
CommitLineData
6f58d7d7
AR
1#ifndef SQUID_ACL_FORWARD_H
2#define SQUID_ACL_FORWARD_H
3
4class ACL;
5class ACLChecklist;
6class ACLFilledChecklist;
7class ACLList;
8
9class AclAddress;
10class AclDenyInfoList;
11class AclSizeLimit;
12
e936c41c
AR
13namespace Acl
14{
6f58d7d7
AR
15
16class InnerNode;
17class NotNode;
18class AndNode;
19class OrNode;
20class Tree;
21
22} // namespace Acl
23
24#define ACL_NAME_SZ 64
25
b5e48e70
AR
26// TODO: Consider renaming all users and removing. Cons: hides the difference
27// between ACLList tree without actions and acl_access Tree with actions.
6f58d7d7
AR
28#define acl_access Acl::Tree
29#define ACLList Acl::Tree
30
31#endif /* SQUID_ACL_FORWARD_H */