/* * 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_ACLREPLYHEADERSTRATEGY_H #define SQUID_ACLREPLYHEADERSTRATEGY_H #include "acl/Acl.h" #include "acl/Data.h" #include "acl/FilledChecklist.h" #include "acl/Strategy.h" #include "HttpReply.h" template class ACLReplyHeaderStrategy : public ACLStrategy { public: virtual int match (ACLData * &, ACLFilledChecklist *); virtual bool requiresReply() const {return true;} }; template int ACLReplyHeaderStrategy
::match (ACLData * &data, ACLFilledChecklist *checklist) { char const *theHeader = checklist->reply->header.getStr(header); if (NULL == theHeader) return 0; return data->match(theHeader); } #endif /* SQUID_REPLYHEADERSTRATEGY_H */