]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/LocalPort.h
Source Format Enforcement (#532)
[thirdparty/squid.git] / src / acl / LocalPort.h
CommitLineData
5dee515e 1/*
77b1029d 2 * Copyright (C) 1996-2020 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
1e40905d
AJ
9#ifndef SQUID_ACLLOCALPORT_H
10#define SQUID_ACLLOCALPORT_H
63be0a78 11
602d9612 12#include "acl/Strategy.h"
5dee515e 13
63be0a78 14/// \ingroup ACLAPI
1e40905d 15class ACLLocalPortStrategy : public ACLStrategy<int>
62e76326 16{
17
18public:
4eac3407 19 virtual int match (ACLData<MatchType> * &, ACLFilledChecklist *) override;
b0dd28ba 20};
5dee515e 21
1e40905d 22#endif /* SQUID_ACLLOCALPORT_H */
f53969cc 23