]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/LocalIp.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / acl / LocalIp.h
CommitLineData
8000a965 1/*
4ac4a490 2 * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
8000a965 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.
8000a965 7 */
8
1e40905d
AJ
9#ifndef SQUID_ACLLOCALIP_H
10#define SQUID_ACLLOCALIP_H
63be0a78 11
3ad63615 12#include "acl/Ip.h"
8000a965 13
63be0a78 14/// \ingroup ACLAPI
1e40905d 15class ACLLocalIP : public ACLIP
62e76326 16{
741c2986 17 MEMPROXY_CLASS(ACLLocalIP);
62e76326 18
19public:
1e40905d 20 static ACLLocalIP const &RegistryEntry();
8000a965 21
22 virtual char const *typeString() const;
8000a965 23 virtual int match(ACLChecklist *checklist);
24 virtual ACL *clone()const;
62e76326 25
26private:
8000a965 27 static Prototype RegistryProtoype;
1e40905d 28 static ACLLocalIP RegistryEntry_;
8000a965 29};
30
1e40905d 31#endif /* SQUID_ACLLOCALIP_H */
f53969cc 32