]> git.ipfire.org Git - thirdparty/squid.git/blob - src/acl/MaxConnection.h
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / acl / MaxConnection.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_ACLMAXCONNECTION_H
10 #define SQUID_ACLMAXCONNECTION_H
11
12 #include "acl/Acl.h"
13
14 /// \ingroup ACLAPI
15 class ACLMaxConnection : public ACL
16 {
17 MEMPROXY_CLASS(ACLMaxConnection);
18
19 public:
20 ACLMaxConnection(char const *);
21 ACLMaxConnection(ACLMaxConnection const &);
22 ~ACLMaxConnection();
23 ACLMaxConnection&operator=(ACLMaxConnection const &);
24
25 virtual ACL *clone()const;
26 virtual char const *typeString() const;
27 virtual void parse();
28 virtual int match(ACLChecklist *checklist);
29 virtual SBufList dump() const;
30 virtual bool empty () const;
31 virtual bool valid () const;
32 virtual void prepareForUse();
33
34 protected:
35 char const *class_;
36 int limit;
37 };
38
39 #endif /* SQUID_ACLMAXCONNECTION_H */
40