]> git.ipfire.org Git - thirdparty/squid.git/blob - src/acl/AclDenyInfoList.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / acl / AclDenyInfoList.h
1 /*
2 * Copyright (C) 1996-2014 The Squid Software Foundation and contributors
3 *
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.
7 */
8
9 #ifndef SQUID_ACLDENYINFOLIST_H_
10 #define SQUID_ACLDENYINFOLIST_H_
11
12 #include "err_type.h"
13
14 class AclNameList;
15
16 /// deny_info representation. Currently a POD.
17 class AclDenyInfoList
18 {
19 public:
20 err_type err_page_id;
21 char *err_page_name;
22 AclNameList *acl_list;
23 AclDenyInfoList *next;
24 };
25
26 #endif /* SQUID_ACLDENYINFOLIST_H_ */
27