]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/AclSizeLimit.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / acl / AclSizeLimit.h
CommitLineData
9cef6668 1/*
bde978a6 2 * Copyright (C) 1996-2015 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
AR
12#include "acl/forward.h"
13
1328cfb7
FC
14/// representation of a class of Size-limit ACLs
15// a POD. TODO: convert to new ACL framework
e4a14600
A
16class AclSizeLimit
17{
1328cfb7
FC
18public:
19 AclSizeLimit *next;
76cd39d7 20 ACLList *aclList;
47f6e231 21 int64_t size;
ef1955a5 22};
23
1328cfb7 24#endif /* SQUID_ACLSIZELIMIT_H_ */
f53969cc 25