]> git.ipfire.org Git - thirdparty/squid.git/blob - src/acl/SslError.cc
merge from SslServerCertValidator r12332
[thirdparty/squid.git] / src / acl / SslError.cc
1 #include "squid.h"
2 #include "acl/SslError.h"
3 #include "acl/SslErrorData.h"
4 #include "acl/Checklist.h"
5
6 int
7 ACLSslErrorStrategy::match (ACLData<MatchType> * &data, ACLFilledChecklist *checklist)
8 {
9 return data->match (checklist->sslErrors);
10 }
11
12 ACLSslErrorStrategy *
13 ACLSslErrorStrategy::Instance()
14 {
15 return &Instance_;
16 }
17
18 ACLSslErrorStrategy ACLSslErrorStrategy::Instance_;