]> git.ipfire.org Git - thirdparty/squid.git/blame - src/HttpHeaderStat.h
Boilerplate: update copyright blurbs on src/
[thirdparty/squid.git] / src / HttpHeaderStat.h
CommitLineData
bbc27441
AJ
1/*
2 * Copyright (C) 1996-2014 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
e1656dc4
FC
9#ifndef HTTPHEADERSTAT_H_
10#define HTTPHEADERSTAT_H_
11
e1656dc4 12#include "StatHist.h"
3407edc1
TSSF
13
14/// per header statistics
75fbab53
A
15class HttpHeaderStat
16{
e1656dc4
FC
17public:
18 const char *label;
19 HttpHeaderMask *owner_mask;
20
21 StatHist hdrUCountDistr;
22 StatHist fieldTypeDistr;
23 StatHist ccTypeDistr;
24 StatHist scTypeDistr;
25
26 int parsedCount;
27 int ccParsedCount;
28 int scParsedCount;
29 int destroyedCount;
30 int busyDestroyedCount;
31};
32
e1656dc4 33#endif /* HTTPHEADERSTAT_H_ */