]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/ConnectionsEncrypted.h
CI: Upgrade GitHub Setup Node and CodeQL actions to Node 20 (#1845)
[thirdparty/squid.git] / src / acl / ConnectionsEncrypted.h
CommitLineData
652789d8 1/*
b8ae064d 2 * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
652789d8
CT
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
ff9d9458
FC
9#ifndef SQUID_SRC_ACL_CONNECTIONSENCRYPTED_H
10#define SQUID_SRC_ACL_CONNECTIONSENCRYPTED_H
652789d8
CT
11
12#include "acl/Acl.h"
13#include "acl/Checklist.h"
14
ff89bfa0 15namespace Acl
652789d8
CT
16{
17
922513e5 18class ConnectionsEncrypted : public Acl::Node
652789d8
CT
19{
20 MEMPROXY_CLASS(ConnectionsEncrypted);
21
22public:
23 ConnectionsEncrypted(char const *);
337b9aa4 24 ~ConnectionsEncrypted() override;
652789d8 25
337b9aa4
AR
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;
652789d8
CT
31
32protected:
652789d8
CT
33 char const *class_;
34};
35
36} // namespace Acl
37
ff9d9458 38#endif /* SQUID_SRC_ACL_CONNECTIONSENCRYPTED_H */
652789d8 39