]> git.ipfire.org Git - thirdparty/squid.git/blob - src/acl/MethodData.h
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / acl / MethodData.h
1 /*
2 * Copyright (C) 1996-2021 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_ACLMETHODDATA_H
10 #define SQUID_ACLMETHODDATA_H
11
12 #include "acl/Acl.h"
13 #include "acl/Data.h"
14 #include "http/RequestMethod.h"
15
16 #include <list>
17
18 class ACLMethodData : public ACLData<HttpRequestMethod>
19 {
20 MEMPROXY_CLASS(ACLMethodData);
21
22 public:
23 ACLMethodData() {}
24 ACLMethodData(ACLMethodData const &);
25 ACLMethodData &operator= (ACLMethodData const &);
26 virtual ~ACLMethodData();
27 bool match(HttpRequestMethod);
28 virtual SBufList dump() const;
29 void parse();
30 bool empty() const {return values.empty();}
31 virtual ACLData<HttpRequestMethod> *clone() const;
32
33 std::list<HttpRequestMethod> values;
34
35 static int ThePurgeCount; ///< PURGE methods seen by parse()
36 };
37
38 #endif /* SQUID_ACLMETHODDATA_H */
39