/* * 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_ACLASN_H #define SQUID_ACLASN_H #include "acl/Data.h" #include "base/CbDataList.h" #include "ip/Address.h" int asnMatchIp(CbDataList *, Ip::Address &); /// \ingroup ACLAPI void asnInit(void); /// \ingroup ACLAPI void asnFreeMemory(void); /// \ingroup ACLAPI class ACLASN : public ACLData { MEMPROXY_CLASS(ACLASN); public: ACLASN() : data(nullptr) {} virtual ~ACLASN(); virtual bool match(Ip::Address); virtual SBufList dump() const; virtual void parse(); bool empty() const; virtual ACLData *clone() const; virtual void prepareForUse(); private: CbDataList *data; }; #endif /* SQUID_ACLASN_H */