]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/AclSizeLimit.h
Maintenance: automate header guards 2/3 (#1655)
[thirdparty/squid.git] / src / acl / AclSizeLimit.h
CommitLineData
9cef6668 1/*
b8ae064d 2 * Copyright (C) 1996-2023 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
ff9d9458
FC
9#ifndef SQUID_SRC_ACL_ACLSIZELIMIT_H
10#define SQUID_SRC_ACL_ACLSIZELIMIT_H
bbc27441 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:
aee3523a 21 AclSizeLimit() : next(nullptr), aclList(nullptr), size(0) {}
8145c130 22 ~AclSizeLimit();
d21b3722 23
1328cfb7 24 AclSizeLimit *next;
76cd39d7 25 ACLList *aclList;
47f6e231 26 int64_t size;
ef1955a5 27};
28
ff9d9458 29#endif /* SQUID_SRC_ACL_ACLSIZELIMIT_H */
f53969cc 30