]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/SslError.cc
Polish: complete constructor for class DelayBucket
[thirdparty/squid.git] / src / acl / SslError.cc
CommitLineData
582c2af2 1#include "squid.h"
127dce76
AR
2#include "acl/SslError.h"
3#include "acl/SslErrorData.h"
4#include "acl/Checklist.h"
1b26be8f 5
1b26be8f 6int
127dce76 7ACLSslErrorStrategy::match (ACLData<MatchType> * &data, ACLFilledChecklist *checklist)
1b26be8f 8{
7a957a93 9 return data->match (checklist->sslErrors);
1b26be8f 10}
11
12ACLSslErrorStrategy *
13ACLSslErrorStrategy::Instance()
14{
15 return &Instance_;
16}
17
18ACLSslErrorStrategy ACLSslErrorStrategy::Instance_;