]> git.ipfire.org Git - thirdparty/squid.git/blame - src/mgr/ActionPasswordList.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / mgr / ActionPasswordList.h
CommitLineData
ee82937c 1/*
4ac4a490 2 * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
ee82937c 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.
ee82937c
FC
7 */
8
bbc27441
AJ
9#ifndef SQUID_MGR_CACHEMGRPASSWD_H_
10#define SQUID_MGR_CACHEMGRPASSWD_H_
11
a5f27c62 12#include "sbuf/forward.h"
ee82937c 13
e4a14600
A
14namespace Mgr
15{
001d55dc
FC
16//TODO: refactor into a std::list
17/// list of cachemgr password authorization definitions. Currently a POD.
613924ee 18class ActionPasswordList
1b2f0924 19{
ee82937c 20public:
f76247e9
AJ
21 ~ActionPasswordList();
22
a5f27c62
AJ
23 char *passwd = nullptr;
24 SBufList actions;
25 ActionPasswordList *next = nullptr;
ee82937c
FC
26};
27
613924ee
FC
28} //namespace Mgr
29
30#endif /* SQUID_MGR_CACHEMGRPASSWD_H_ */
f53969cc 31