]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/AclNameList.h
Boilerplate: update copyright blurbs on src/
[thirdparty/squid.git] / src / acl / AclNameList.h
CommitLineData
6be70545 1/*
bbc27441 2 * Copyright (C) 1996-2014 The Squid Software Foundation and contributors
6be70545 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.
6be70545
FC
7 */
8
bbc27441
AJ
9#ifndef SQUID_ACL_ACLNAMELIST_H_
10#define SQUID_ACL_ACLNAMELIST_H_
11
6f58d7d7 12#include "acl/forward.h"
001d55dc
FC
13
14/// list of name-based ACLs. Currently a POD.
1b2f0924
FC
15class AclNameList
16{
6be70545
FC
17public:
18 char name[ACL_NAME_SZ];
19 AclNameList *next;
20};
001d55dc 21// TODO: convert to a std::list<string>
6be70545
FC
22
23#endif /* SQUID_ACLNAMELIST_H_ */