Squid Web Cache v8/master
Loading...
Searching...
No Matches
forward.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 1996-2025 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9#ifndef SQUID_SRC_ACL_FORWARD_H
10#define SQUID_SRC_ACL_FORWARD_H
11
12#include "base/RefCount.h"
13
14class ACLChecklist;
16
17class AclDenyInfoList;
18class AclSizeLimit;
19
20namespace Acl
21{
22
23class Node;
24class Address;
25class AndNode;
26class Answer;
27class ChecklistFiller;
28class InnerNode;
29class NamedAcls;
30class NotNode;
31class OrNode;
32class Tree;
33
35void Init(void);
36
39
40} // namespace Acl
41
42typedef void ACLCB(Acl::Answer, void *);
43
44// TODO: Consider renaming all users and removing. Cons: hides the difference
45// between ACLList tree without actions and acl_access Tree with actions.
48
51
52#endif /* SQUID_SRC_ACL_FORWARD_H */
53
void ACLCB(Acl::Answer, void *)
Definition forward.h:42
RefCount< ExternalACLEntry > ExternalACLEntryPointer
Definition forward.h:50
deny_info representation. Currently a POD.
representation of a class of Size-limit ACLs
Definition Acl.cc:33
void Init(void)
prepares to parse ACLs configuration
Definition AclRegs.cc:186
RefCount< Acl::Tree > TreePointer
reconfiguration-safe storage of ACL rules
Definition forward.h:38