/* * Copyright (C) 1996-2023 The Squid Software Foundation and contributors * * Squid software is distributed under GPLv2+ license and includes * contributions from numerous individuals and organizations. * Please see the COPYING and CONTRIBUTORS files for details. */ #ifndef SQUID_SRC_ACL_ARP_H #define SQUID_SRC_ACL_ARP_H #include "acl/Node.h" #include "eui/Eui48.h" #include /// \ingroup ACLAPI class ACLARP : public Acl::Node { MEMPROXY_CLASS(ACLARP); public: ACLARP(char const *); ~ACLARP() override {} char const *typeString() const override; void parse() override; int match(ACLChecklist *checklist) override; SBufList dump() const override; bool empty () const override; protected: char const *class_; typedef std::set AclArpData_t; AclArpData_t aclArpData; }; #endif /* SQUID_SRC_ACL_ARP_H */