Squid Web Cache master
Loading...
Searching...
No Matches
ClientRequestContext.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 1996-2025 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_SRC_CLIENTREQUESTCONTEXT_H
10#define SQUID_SRC_CLIENTREQUESTCONTEXT_H
11
12#include "acl/forward.h"
13#include "base/RefCount.h"
14#include "cbdata.h"
15#include "defines.h"
16#include "dns/forward.h"
17#include "helper/forward.h"
18#include "ipcache.h"
19
20#if USE_ADAPTATION
21#include "adaptation/forward.h"
22#endif
23
24class ACLChecklist;
26class ErrorState;
27
29{
31
32public:
34 ~ClientRequestContext() override;
35
36 void hostHeaderVerify();
38 void hostHeaderVerifyFailed(const char *A, const char *B);
39 void clientAccessCheck();
40 void clientAccessCheck2();
44 void clientStoreIdStart();
45 void clientStoreIdDone(const Helper::Reply &);
46 void checkNoCache();
47 void checkNoCacheDone(const Acl::Answer &);
48#if USE_ADAPTATION
50#endif
51#if USE_OPENSSL
58 bool sslBumpAccessCheck();
60 void sslBumpAccessCheckDone(const Acl::Answer &answer);
61#endif
62
66
68 bool http_access_done = false;
70#if USE_ADAPTATION
72#endif
73 bool redirect_done = false;
74 bool store_id_done = false;
75 bool no_cache_done = false;
77 bool toClientMarkingDone = false;
78#if USE_OPENSSL
79 bool sslBumpCheckDone = false;
80#endif
81
82 bool readNextRequest = false;
83 ErrorState *error = nullptr;
84
85#if FOLLOW_X_FORWARDED_FOR
87#endif
88};
89
90#endif /* SQUID_SRC_CLIENTREQUESTCONTEXT_H */
91
#define RefCountable
The locking interface for use on Reference-Counted classes.
Definition Lock.h:66
#define CBDATA_CLASS(type)
Definition cbdata.h:289
void clientAccessCheckDone(const Acl::Answer &)
void clientStoreIdDone(const Helper::Reply &)
void clientRedirectDone(const Helper::Reply &)
void sslBumpAccessCheckDone(const Acl::Answer &answer)
The callback function for ssl-bump access check list.
bool readNextRequest
whether Squid should read after error handling
ClientHttpRequest * http
void checkNoCache()
applies "cache allow/deny" rules, asynchronously if needed
ErrorState * error
saved error page for centralized/delayed processing
void hostHeaderVerifyFailed(const char *A, const char *B)
size_t currentXffHopNumber
number of X-Forwarded-For header values processed so far
void hostHeaderIpVerify(const ipcache_addrs *, const Dns::LookupDetails &)
void checkNoCacheDone(const Acl::Answer &)
encapsulates DNS lookup results
#define REDIRECT_NONE
Definition defines.h:53