]> git.ipfire.org Git - thirdparty/squid.git/blob - src/acl/SslErrorData.h
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / acl / SslErrorData.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_ACLSSL_ERRORDATA_H
10 #define SQUID_ACLSSL_ERRORDATA_H
11
12 #include "acl/Acl.h"
13 #include "acl/Data.h"
14 #include "security/forward.h"
15
16 class ACLSslErrorData : public ACLData<const Security::CertErrors *>
17 {
18 MEMPROXY_CLASS(ACLSslErrorData);
19
20 public:
21 ACLSslErrorData() = default;
22 ACLSslErrorData(ACLSslErrorData const &);
23 ACLSslErrorData &operator= (ACLSslErrorData const &);
24 virtual ~ACLSslErrorData() {}
25 bool match(const Security::CertErrors *);
26 virtual SBufList dump() const;
27 void parse();
28 bool empty() const { return values.empty(); }
29 virtual ACLSslErrorData *clone() const;
30
31 Security::Errors values;
32 };
33
34 #endif /* SQUID_ACLSSL_ERRORDATA_H */
35