]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/AclSizeLimit.h
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / acl / AclSizeLimit.h
CommitLineData
9cef6668 1/*
f70aedc4 2 * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
9cef6668 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.
9cef6668 7 */
8a368316 8
bbc27441
AJ
9#ifndef SQUID_ACLSIZELIMIT_H_
10#define SQUID_ACLSIZELIMIT_H_
11
6f58d7d7 12#include "acl/forward.h"
d21b3722 13#include "cbdata.h"
6f58d7d7 14
1328cfb7 15/// representation of a class of Size-limit ACLs
e4a14600
A
16class AclSizeLimit
17{
d21b3722
AJ
18 CBDATA_CLASS(AclSizeLimit);
19
1328cfb7 20public:
d21b3722 21 AclSizeLimit() : next(NULL), aclList(NULL), size(0) {}
8145c130 22 ~AclSizeLimit();
d21b3722 23
1328cfb7 24 AclSizeLimit *next;
76cd39d7 25 ACLList *aclList;
47f6e231 26 int64_t size;
ef1955a5 27};
28
1328cfb7 29#endif /* SQUID_ACLSIZELIMIT_H_ */
f53969cc 30