Squid Web Cache master
Loading...
Searching...
No Matches
HttpHdrSc.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_HTTPHDRSC_H
10#define SQUID_SRC_HTTPHDRSC_H
11
12#include "http/forward.h"
13#include "HttpHdrScTarget.h"
15#include "SquidString.h"
16
17#include <list>
18
19class Packable;
20class StatHist;
21class StoreEntry;
22
23/* http surogate control header field */
25{
27
28public:
29 bool parse(const String *str);
30 void packInto(Packable * p) const;
31 void updateStats(StatHist *) const;
32 HttpHdrScTarget * getMergedTarget(const char *ourtarget); // TODO: make const?
33 void setMaxAge(char const *target, int max_age);
34
35private:
36 HttpHdrScTarget * findTarget (const char *target);
37
38 std::list<HttpHdrScTarget, PoolingAllocator<HttpHdrScTarget>> targets;
39};
40
41/* Http Surrogate Control Header Field */
42void httpHdrScStatDumper(StoreEntry * sentry, int idx, double val, double size, int count);
43void httpHdrScInitModule (void);
45void httpHdrScSetMaxAge(HttpHdrSc *, char const *, int);
46
48#endif /* SQUID_SRC_HTTPHDRSC_H */
49
HttpHdrSc * httpHdrScParseCreate(String const &)
Definition HttpHdrSc.cc:59
void httpHdrScSetMaxAge(HttpHdrSc *, char const *, int)
void httpHdrScStatDumper(StoreEntry *sentry, int idx, double val, double size, int count)
Definition HttpHdrSc.cc:266
http_hdr_sc_type & operator++(http_hdr_sc_type &)
Definition HttpHdrSc.cc:40
void httpHdrScInitModule(void)
Definition HttpHdrSc.cc:48
int size
Definition ModDevPoll.cc:70
void setMaxAge(char const *target, int max_age)
Definition HttpHdrSc.cc:233
MEMPROXY_CLASS(HttpHdrSc)
void packInto(Packable *p) const
Definition HttpHdrSc.cc:223
HttpHdrScTarget * findTarget(const char *target)
Definition HttpHdrSc.cc:279
std::list< HttpHdrScTarget, PoolingAllocator< HttpHdrScTarget > > targets
Definition HttpHdrSc.h:38
HttpHdrScTarget * getMergedTarget(const char *ourtarget)
Definition HttpHdrSc.cc:290
bool parse(const String *str)
Definition HttpHdrSc.cc:73
void updateStats(StatHist *) const
Definition HttpHdrSc.cc:245
http_hdr_sc_type
Definition forward.h:31