]> git.ipfire.org Git - thirdparty/squid.git/blame - src/ident/Config.h
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / ident / Config.h
CommitLineData
bbc27441 1/*
f70aedc4 2 * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
bbc27441
AJ
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
4daaf3cb
AJ
9#ifndef SQUID_IDENT_CONFIG_H
10#define SQUID_IDENT_CONFIG_H
11
4daaf3cb
AJ
12#if USE_IDENT
13
14#include "acl/Acl.h"
15
04f7fd38
AJ
16namespace Ident
17{
4daaf3cb 18
04f7fd38
AJ
19class IdentConfig
20{
4daaf3cb
AJ
21public:
22 acl_access *identLookup;
23 time_t timeout;
24};
25
26extern IdentConfig TheConfig;
27
e5519212 28} // namespace Ident
4daaf3cb
AJ
29
30#endif /* USE_IDENT */
31#endif /* SQUID_IDENT_CONFIG_H */
f53969cc 32