/* * Copyright (C) 1996-2018 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 class ACLChecklist; #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 *, ACLFlags &); virtual bool requiresReply() const {return true;} static ACLReplyHeaderStrategy *Instance(); /* Not implemented to prevent copies of the instance. */ /* Not private to prevent brain dead g+++ warnings about * private constructors with no friends */ ACLReplyHeaderStrategy(ACLReplyHeaderStrategy const &); private: static ACLReplyHeaderStrategy *Instance_; ACLReplyHeaderStrategy() {} ACLReplyHeaderStrategy&operator=(ACLReplyHeaderStrategy const &); }; template int ACLReplyHeaderStrategy
::match (ACLData * &data, ACLFilledChecklist *checklist, ACLFlags &) { char const *theHeader = checklist->reply->header.getStr(header); if (NULL == theHeader) return 0; return data->match(theHeader); } template ACLReplyHeaderStrategy
* ACLReplyHeaderStrategy
::Instance() { if (!Instance_) Instance_ = new ACLReplyHeaderStrategy
; return Instance_; } template ACLReplyHeaderStrategy
* ACLReplyHeaderStrategy
::Instance_ = NULL; #endif /* SQUID_REPLYHEADERSTRATEGY_H */