]> git.ipfire.org Git - thirdparty/squid.git/blame - src/HttpHeaderStat.h
Put HttpHeaderStat, StatCounters and cd_guess_stats classes in their own headers.
[thirdparty/squid.git] / src / HttpHeaderStat.h
CommitLineData
e1656dc4
FC
1/*
2 * HttpHeaderStat.h
3 *
4 * Created on: Dec 9, 2011
5 * Author: kinkie
6 */
7
8#ifndef HTTPHEADERSTAT_H_
9#define HTTPHEADERSTAT_H_
10
11/* per header statistics */
12
13#include "StatHist.h"
14class HttpHeaderStat {
15public:
16 const char *label;
17 HttpHeaderMask *owner_mask;
18
19 StatHist hdrUCountDistr;
20 StatHist fieldTypeDistr;
21 StatHist ccTypeDistr;
22 StatHist scTypeDistr;
23
24 int parsedCount;
25 int ccParsedCount;
26 int scParsedCount;
27 int destroyedCount;
28 int busyDestroyedCount;
29};
30
31
32#endif /* HTTPHEADERSTAT_H_ */