]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/SslError.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / acl / SslError.cc
CommitLineData
bbc27441 1/*
bde978a6 2 * Copyright (C) 1996-2015 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
582c2af2 9#include "squid.h"
602d9612 10#include "acl/Checklist.h"
127dce76
AR
11#include "acl/SslError.h"
12#include "acl/SslErrorData.h"
1b26be8f 13
1b26be8f 14int
33810b1d 15ACLSslErrorStrategy::match (ACLData<MatchType> * &data, ACLFilledChecklist *checklist, ACLFlags &)
1b26be8f 16{
7a957a93 17 return data->match (checklist->sslErrors);
1b26be8f 18}
19
20ACLSslErrorStrategy *
21ACLSslErrorStrategy::Instance()
22{
23 return &Instance_;
24}
25
26ACLSslErrorStrategy ACLSslErrorStrategy::Instance_;
f53969cc 27