]>
Commit | Line | Data |
---|---|---|
1 | /* | |
2 | * Copyright (C) 1996-2025 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_CONNECTIONSENCRYPTED_H | |
10 | #define SQUID_SRC_ACL_CONNECTIONSENCRYPTED_H | |
11 | ||
12 | #include "acl/Acl.h" | |
13 | #include "acl/Checklist.h" | |
14 | ||
15 | namespace Acl | |
16 | { | |
17 | ||
18 | class ConnectionsEncrypted : public Acl::Node | |
19 | { | |
20 | MEMPROXY_CLASS(ConnectionsEncrypted); | |
21 | ||
22 | public: | |
23 | ConnectionsEncrypted(char const *); | |
24 | ~ConnectionsEncrypted() override; | |
25 | ||
26 | char const *typeString() const override; | |
27 | void parse() override; | |
28 | int match(ACLChecklist *checklist) override; | |
29 | SBufList dump() const override; | |
30 | bool empty () const override; | |
31 | ||
32 | protected: | |
33 | char const *class_; | |
34 | }; | |
35 | ||
36 | } // namespace Acl | |
37 | ||
38 | #endif /* SQUID_SRC_ACL_CONNECTIONSENCRYPTED_H */ | |
39 |