]> git.ipfire.org Git - thirdparty/squid.git/blame - src/DelaySpec.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / DelaySpec.h
CommitLineData
b67e2c8c 1/*
4ac4a490 2 * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
b67e2c8c 3 *
bbc27441
AJ
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.
b67e2c8c 7 */
bbc27441 8
b67e2c8c 9#ifndef SQUID_DELAYSPEC_H
10#define SQUID_DELAYSPEC_H
11
e1f7507e
AJ
12class StoreEntry;
13
63be0a78 14/// \ingroup DelyPoolsAPI
62e76326 15class DelaySpec
16{
17
18public:
b67e2c8c 19 DelaySpec();
e1f7507e
AJ
20 void stats(StoreEntry * sentry, char const *) const;
21 void dump(StoreEntry *) const;
b67e2c8c 22 void parse();
23 int restore_bps;
b1fb3348 24 int64_t max_bytes;
b67e2c8c 25};
26
27#endif /* SQUID_DELAYSPEC_H */
f53969cc 28