AtStepData.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_ATSTEPDATA_H
10 #define SQUID_SRC_ACL_ATSTEPDATA_H
11 
12 #include "acl/Acl.h"
13 #include "acl/Data.h"
14 #include "XactionStep.h"
15 #include <list>
16 
17 class ACLAtStepData : public ACLData<XactionStep>
18 {
20 
21 public:
22  ACLAtStepData();
23  ~ACLAtStepData() override;
24  bool match(XactionStep) override;
25  SBufList dump() const override;
26  void parse() override;
27  bool empty() const override;
28 
29  std::list<XactionStep> values;
30 };
31 
32 #endif /* SQUID_SRC_ACL_ATSTEPDATA_H */
33 
std::list< SBuf > SBufList
Definition: forward.h:22
SBufList dump() const override
Definition: AtStepData.cc:67
Configured ACL parameter(s) (e.g., domain names in dstdomain ACL).
Definition: Data.h:17
XactionStep
Definition: XactionStep.h:12
void parse() override
Definition: AtStepData.cc:76
MEMPROXY_CLASS(ACLAtStepData)
std::list< XactionStep > values
Definition: AtStepData.h:29
~ACLAtStepData() override
Definition: AtStepData.cc:55
bool match(XactionStep) override
Definition: AtStepData.cc:60
bool empty() const override
Definition: AtStepData.cc:87

 

Introduction

Documentation

Support

Miscellaneous