]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/SslError.h
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / acl / SslError.h
CommitLineData
bbc27441 1/*
f70aedc4 2 * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
bbc27441
AJ
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
1b26be8f 9#ifndef SQUID_ACLSSL_ERROR_H
10#define SQUID_ACLSSL_ERROR_H
92e3827b 11
602d9612 12#include "acl/Strategy.h"
4eac3407 13#include "security/forward.h"
1b26be8f 14
92e3827b 15class ACLSslErrorStrategy : public ACLStrategy<const Security::CertErrors *>
1b26be8f 16{
17
18public:
4eac3407 19 virtual int match (ACLData<MatchType> * &, ACLFilledChecklist *) override;
1b26be8f 20};
21
22#endif /* SQUID_ACLSSL_ERROR_H */
f53969cc 23