]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/PeerName.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / acl / PeerName.h
CommitLineData
bbc27441 1/*
f6e9a3ee 2 * Copyright (C) 1996-2019 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
6db78a1a
AJ
9#ifndef SQUID_ACLPEERNAME_H
10#define SQUID_ACLPEERNAME_H
11
602d9612 12#include "acl/Strategy.h"
6db78a1a
AJ
13
14class ACLPeerNameStrategy : public ACLStrategy<const char *>
15{
16
17public:
4eac3407 18 virtual int match (ACLData<MatchType> * &, ACLFilledChecklist *) override;
6db78a1a
AJ
19};
20
21#endif /* SQUID_ACLPEERNAME_H */
f53969cc 22