/* * $Id$ */ #include "squid.h" #include "acl/SslError.h" #include "acl/SslErrorData.h" #include "acl/Checklist.h" int ACLSslErrorStrategy::match (ACLData * &data, ACLFilledChecklist *checklist) { return data->match (checklist->ssl_error); } ACLSslErrorStrategy * ACLSslErrorStrategy::Instance() { return &Instance_; } ACLSslErrorStrategy ACLSslErrorStrategy::Instance_;