]> git.ipfire.org Git - thirdparty/squid.git/blame - src/HttpHeaderStat.h
Various audit updates
[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"
75fbab53
A
14class HttpHeaderStat
15{
e1656dc4
FC
16public:
17 const char *label;
18 HttpHeaderMask *owner_mask;
19
20 StatHist hdrUCountDistr;
21 StatHist fieldTypeDistr;
22 StatHist ccTypeDistr;
23 StatHist scTypeDistr;
24
25 int parsedCount;
26 int ccParsedCount;
27 int scParsedCount;
28 int destroyedCount;
29 int busyDestroyedCount;
30};
31
e1656dc4 32#endif /* HTTPHEADERSTAT_H_ */