]> git.ipfire.org Git - thirdparty/squid.git/blob - src/acl/HttpRepHeader.h
e774c77a97f306b2ad28d88ce9685f17c19a0a5e
[thirdparty/squid.git] / src / acl / HttpRepHeader.h
1 /*
2 * Copyright (C) 1996-2022 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 #ifndef SQUID_ACLHTTPREPHEADER_H
10 #define SQUID_ACLHTTPREPHEADER_H
11
12 #include "acl/Strategised.h"
13 #include "acl/Strategy.h"
14 #include "HttpHeader.h"
15
16 /// \ingroup ACLAPI
17 class ACLHTTPRepHeaderStrategy : public ACLStrategy<HttpHeader*>
18 {
19
20 public:
21 int match (ACLData<MatchType> * &, ACLFilledChecklist *) override;
22 bool requiresReply() const override { return true; }
23 };
24
25 #endif /* SQUID_ACLHTTPREPHEADER_H */
26