Squid Web Cache master
Loading...
Searching...
No Matches
AllOf.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_ALLOF_H
10#define SQUID_SRC_ACL_ALLOF_H
11
12#include "acl/InnerNode.h"
13
14namespace Acl
15{
16
20class AllOf: public Acl::InnerNode
21{
23
24public:
25 /* Acl::Node API */
26 char const *typeString() const override;
27 void parse() override;
28 SBufList dump() const override;
29
30private:
31 /* Acl::InnerNode API */
32 int doMatch(ACLChecklist *checklist, Nodes::const_iterator start) const override;
33};
34
35} // namespace Acl
36
37#endif /* SQUID_SRC_ACL_ALLOF_H */
38
MEMPROXY_CLASS(AllOf)
void parse() override
parses node representation in squid.conf; dies on failures
Definition AllOf.cc:47
int doMatch(ACLChecklist *checklist, Nodes::const_iterator start) const override
Definition AllOf.cc:31
char const * typeString() const override
Definition AllOf.cc:19
SBufList dump() const override
Definition AllOf.cc:25
An intermediate Acl::Node tree node. Manages a collection of child tree nodes.
Definition InnerNode.h:23
Definition Acl.cc:33
std::list< SBuf > SBufList
Definition forward.h:23