]> git.ipfire.org Git - thirdparty/squid.git/blob - src/mgr/ActionPasswordList.h
Boilerplate: update copyright blurbs on src/
[thirdparty/squid.git] / src / mgr / ActionPasswordList.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_MGR_CACHEMGRPASSWD_H_
10 #define SQUID_MGR_CACHEMGRPASSWD_H_
11
12 class wordlist;
13
14 namespace Mgr
15 {
16 //TODO: refactor into a std::list
17 /// list of cachemgr password authorization definitions. Currently a POD.
18 class ActionPasswordList
19 {
20 public:
21 ActionPasswordList() : passwd(NULL), actions(NULL), next(NULL) {}
22 ~ActionPasswordList();
23
24 char *passwd;
25 wordlist *actions;
26 ActionPasswordList *next;
27 };
28
29 } //namespace Mgr
30
31 #endif /* SQUID_MGR_CACHEMGRPASSWD_H_ */