]> git.ipfire.org Git - thirdparty/squid.git/blob - src/acl/HttpStatus.h
Source Format Enforcement (#532)
[thirdparty/squid.git] / src / acl / HttpStatus.h
1 /*
2 * Copyright (C) 1996-2020 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_ACLHTTPSTATUS_H
10 #define SQUID_ACLHTTPSTATUS_H
11
12 #include "acl/Acl.h"
13 #include "acl/Checklist.h"
14 #include "splay.h"
15
16 /// \ingroup ACLAPI
17 struct acl_httpstatus_data {
18 int status1, status2;
19 acl_httpstatus_data(int);
20 acl_httpstatus_data(int, int);
21 SBuf toStr() const; // was toStr
22
23 static int compare(acl_httpstatus_data* const& a, acl_httpstatus_data* const& b);
24 };
25
26 /// \ingroup ACLAPI
27 class ACLHTTPStatus : public ACL
28 {
29 MEMPROXY_CLASS(ACLHTTPStatus);
30
31 public:
32 ACLHTTPStatus(char const *);
33 ACLHTTPStatus(ACLHTTPStatus const &);
34 ~ACLHTTPStatus();
35 ACLHTTPStatus&operator=(ACLHTTPStatus const &);
36
37 virtual ACL *clone()const;
38 virtual char const *typeString() const;
39 virtual void parse();
40 virtual int match(ACLChecklist *checklist);
41 virtual SBufList dump() const;
42 virtual bool empty () const;
43 virtual bool requiresReply() const { return true; }
44
45 protected:
46 Splay<acl_httpstatus_data*> *data;
47 char const *class_;
48 };
49
50 #endif /* SQUID_ACLHTTPSTATUS_H */
51