]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/MyPortName.h
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / acl / MyPortName.h
CommitLineData
81b6e9a7 1/*
5b74111a 2 * Copyright (C) 1996-2018 The Squid Software Foundation and contributors
81b6e9a7 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.
81b6e9a7 7 */
8
9#ifndef SQUID_ACLMYPORTNAME_H
10#define SQUID_ACLMYPORTNAME_H
602d9612 11#include "acl/Strategy.h"
81b6e9a7 12
13class ACLMyPortNameStrategy : public ACLStrategy<const char *>
14{
15
16public:
4eac3407 17 virtual int match (ACLData<MatchType> * &, ACLFilledChecklist *) override;
81b6e9a7 18};
19
20#endif /* SQUID_ACLMYPORTNAME_H */
f53969cc 21