AllOf.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 1996-2023 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 
14 namespace Acl
15 {
16 
20 class AllOf: public Acl::InnerNode
21 {
23 
24 public:
25  /* Acl::Node API */
26  char const *typeString() const override;
27  void parse() override;
28  SBufList dump() const override;
29 
30 private:
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 
SBufList dump() const override
Definition: AllOf.cc:25
std::list< SBuf > SBufList
Definition: forward.h:22
Definition: Acl.cc:33
An intermediate Acl::Node tree node. Manages a collection of child tree nodes.
Definition: InnerNode.h:22
const char * typeString() const override
Definition: AllOf.cc:19
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

 

Introduction

Documentation

Support

Miscellaneous