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