]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/SourceAsn.h
Maintenance: Consistent use of C++11 "override" specifier (#1224)
[thirdparty/squid.git] / src / acl / SourceAsn.h
CommitLineData
5dee515e 1/*
bf95c10a 2 * Copyright (C) 1996-2022 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 */
bbc27441 8
e412456e
AJ
9#ifndef SQUID_ACL_SOURCEASN_H
10#define SQUID_ACL_SOURCEASN_H
e1f7507e 11
127dce76 12#include "acl/Strategy.h"
96d89ea0 13#include "ip/Address.h"
5dee515e 14
e412456e
AJ
15class ACLChecklist;
16
b7ac5457 17class ACLSourceASNStrategy : public ACLStrategy<Ip::Address>
62e76326 18{
19
20public:
337b9aa4 21 int match (ACLData<MatchType> * &, ACLFilledChecklist *) override;
b0dd28ba 22};
5dee515e 23
e412456e 24#endif /* SQUID_ACL_SOURCEASN_H */
f53969cc 25