]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/SslError.cc
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / acl / SslError.cc
CommitLineData
bbc27441 1/*
5b74111a 2 * Copyright (C) 1996-2018 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"
4eac3407 10#include "acl/FilledChecklist.h"
127dce76
AR
11#include "acl/SslError.h"
12#include "acl/SslErrorData.h"
1b26be8f 13
1b26be8f 14int
4eac3407 15ACLSslErrorStrategy::match (ACLData<MatchType> * &data, ACLFilledChecklist *checklist)
1b26be8f 16{
7a957a93 17 return data->match (checklist->sslErrors);
1b26be8f 18}
19