]> git.ipfire.org Git - thirdparty/squid.git/blame - src/auth/AuthAclState.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / auth / AuthAclState.h
CommitLineData
bbc27441 1/*
bde978a6 2 * Copyright (C) 1996-2015 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
56a49fda
AJ
9#ifndef _SQUID__SRC_AUTH_AUTHACLSTATE_H
10#define _SQUID__SRC_AUTH_AUTHACLSTATE_H
11
2f1431ea
AJ
12#if USE_AUTH
13
56a49fda
AJ
14typedef enum {
15 AUTH_ACL_CHALLENGE = -2,
16 AUTH_ACL_HELPER = -1,
17 AUTH_ACL_CANNOT_AUTHENTICATE = 0,
18 AUTH_AUTHENTICATED = 1
19} AuthAclState;
20
2f1431ea
AJ
21#endif /* USE_AUTH */
22#endif /* _SQUID__SRC_AUTH_AUTHACLSTATE_H */
f53969cc 23