]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/HttpReqHeader.cc
Source Format Enforcement (#532)
[thirdparty/squid.git] / src / acl / HttpReqHeader.cc
CommitLineData
00634927 1/*
77b1029d 2 * Copyright (C) 1996-2020 The Squid Software Foundation and contributors
00634927 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.
00634927 7 */
8
582c2af2 9#include "squid.h"
4eac3407 10#include "acl/FilledChecklist.h"
602d9612
A
11#include "acl/HttpHeaderData.h"
12#include "acl/HttpReqHeader.h"
00634927 13#include "HttpRequest.h"
14
00634927 15int
4eac3407 16ACLHTTPReqHeaderStrategy::match (ACLData<MatchType> * &data, ACLFilledChecklist *checklist)
00634927 17{
18 return data->match (&checklist->request->header);
19}
20