]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/HttpReqHeader.h
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / acl / HttpReqHeader.h
CommitLineData
00634927 1/*
5b74111a 2 * Copyright (C) 1996-2018 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
7df0bfd7 9#ifndef SQUID_ACLHTTPREQHEADER_H
10#define SQUID_ACLHTTPREQHEADER_H
63be0a78 11
602d9612 12#include "acl/Strategy.h"
00634927 13#include "HttpHeader.h"
14
63be0a78 15/// \ingroup ACLAPI
00634927 16class ACLHTTPReqHeaderStrategy : public ACLStrategy<HttpHeader*>
17{
18
19public:
4eac3407 20 virtual int match (ACLData<MatchType> * &, ACLFilledChecklist *);
00634927 21 virtual bool requiresRequest() const { return true; }
00634927 22};
23
7df0bfd7 24#endif /* SQUID_ACLHTTPREQHEADER_H */
f53969cc 25