]> git.ipfire.org Git - thirdparty/squid.git/blame - src/TimeOrTag.h
Removed pointless call to maybeReadVirginBody() for aborted entries.
[thirdparty/squid.git] / src / TimeOrTag.h
CommitLineData
81a94152
AJ
1#ifndef _SQUID_TIMEORTAG_H
2#define _SQUID_TIMEORTAG_H
3
4#include "ETag.h"
5
6/**
7 * Some fields can hold either time or etag specs (e.g. If-Range)
8 */
9class TimeOrTag {
10public:
11 ETag tag; /* entity tag */
12 time_t time;
13 int valid; /* true if struct is usable */
14};
15
16#endif /* _SQUID_TIMEORTAG_H */