]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/DestinationIp.h
Maintenance: automate header guards 2/3 (#1655)
[thirdparty/squid.git] / src / acl / DestinationIp.h
CommitLineData
8000a965 1/*
b8ae064d 2 * Copyright (C) 1996-2023 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
ff9d9458
FC
9#ifndef SQUID_SRC_ACL_DESTINATIONIP_H
10#define SQUID_SRC_ACL_DESTINATIONIP_H
741c2986 11
3ad63615
AR
12#include "acl/Checklist.h"
13#include "acl/Ip.h"
714e68b7 14#include "ipcache.h"
8000a965 15
62e76326 16class ACLDestinationIP : public ACLIP
17{
b001e822 18 MEMPROXY_CLASS(ACLDestinationIP);
8000a965 19
741c2986 20public:
922513e5 21 static void StartLookup(ACLFilledChecklist &, const Acl::Node &);
5fb6afec 22
337b9aa4
AR
23 char const *typeString() const override;
24 const Acl::Options &options() override;
25 int match(ACLChecklist *checklist) override;
62e76326 26
62e76326 27private:
5fb6afec
EB
28 static void LookupDone(const ipcache_addrs *, const Dns::LookupDetails &, void *data);
29
4eac3407 30 Acl::BooleanOptionValue lookupBanned; ///< are DNS lookups allowed?
8000a965 31};
32
ff9d9458 33#endif /* SQUID_SRC_ACL_DESTINATIONIP_H */
f53969cc 34