/* * 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_ACLNOTE_H #define SQUID_ACLNOTE_H #include "acl/CharacterSetOption.h" #include "acl/Data.h" #include "acl/Strategy.h" #include "Notes.h" namespace Acl { /// common parent of several ACLs dealing with transaction annotations class AnnotationStrategy: public ACLStrategy { public: AnnotationStrategy(): delimiters(CharacterSet(__FILE__, ",")) {} virtual const Acl::Options &options() override; Acl::CharacterSetOptionValue delimiters; ///< annotation separators }; } // namespace Acl /// \ingroup ACLAPI class ACLNoteStrategy: public Acl::AnnotationStrategy { public: virtual int match (ACLData * &, ACLFilledChecklist *); virtual bool requiresRequest() const { return true; } private: bool matchNotes(ACLData *, const NotePairs *) const; }; #endif /* SQUID_ACLNOTE_H */