]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/LocalIp.h
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / acl / LocalIp.h
CommitLineData
8000a965 1/*
f70aedc4 2 * Copyright (C) 1996-2021 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:
8000a965 20 virtual char const *typeString() const;
8000a965 21 virtual int match(ACLChecklist *checklist);
22 virtual ACL *clone()const;
8000a965 23};
24
1e40905d 25#endif /* SQUID_ACLLOCALIP_H */
f53969cc 26