]> git.ipfire.org Git - thirdparty/squid.git/blob - src/ident/Config.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / ident / Config.h
1 /*
2 * Copyright (C) 1996-2015 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_IDENT_CONFIG_H
10 #define SQUID_IDENT_CONFIG_H
11
12 #if USE_IDENT
13
14 #include "acl/Acl.h"
15
16 namespace Ident
17 {
18
19 class IdentConfig
20 {
21 public:
22 acl_access *identLookup;
23 time_t timeout;
24 };
25
26 extern IdentConfig TheConfig;
27
28 } // namespace Ident
29
30 #endif /* USE_IDENT */
31 #endif /* SQUID_IDENT_CONFIG_H */
32