]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/Method.cc
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / acl / Method.cc
CommitLineData
48071869 1/*
5b74111a 2 * Copyright (C) 1996-2018 The Squid Software Foundation and contributors
48071869 3 *
bbc27441
AJ
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.
48071869 7 */
8
582c2af2 9#include "squid.h"
4eac3407 10#include "acl/FilledChecklist.h"
127dce76
AR
11#include "acl/Method.h"
12#include "acl/MethodData.h"
4eac3407 13#include "acl/Strategised.h"
a2ac85d9 14#include "HttpRequest.h"
48071869 15
97427e90 16/* explicit template instantiation required for some systems */
17
3d0ac046 18template class ACLStrategised<HttpRequestMethod>;
97427e90 19
48071869 20int
4eac3407 21ACLMethodStrategy::match (ACLData<MatchType> * &data, ACLFilledChecklist *checklist)
48071869 22{
23 return data->match (checklist->request->method);
24}
25