]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/Url.h
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / acl / Url.h
CommitLineData
5dee515e 1/*
f70aedc4 2 * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
5dee515e 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.
5dee515e 7 */
8
9#ifndef SQUID_ACLURL_H
10#define SQUID_ACLURL_H
4eac3407 11
127dce76
AR
12#include "acl/Data.h"
13#include "acl/Strategised.h"
5dee515e 14
b0dd28ba 15class ACLUrlStrategy : public ACLStrategy<char const *>
5dee515e 16{
62e76326 17
18public:
4eac3407 19 virtual int match (ACLData<char const *> * &, ACLFilledChecklist *);
5dee515e 20 virtual bool requiresRequest() const {return true;}
5dee515e 21};
22
23#endif /* SQUID_ACLURL_H */
f53969cc 24