]> git.ipfire.org Git - thirdparty/squid.git/blob - src/auth/basic/SMB_LM/valid.h
Source Format Enforcement (#1234)
[thirdparty/squid.git] / src / auth / basic / SMB_LM / valid.h
1 /*
2 * Copyright (C) 1996-2023 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 _VALID_H_
10 #define _VALID_H_
11 /* SMB User verification function */
12
13 #define NTV_NO_ERROR 0
14 #define NTV_SERVER_ERROR 1
15 #define NTV_PROTOCOL_ERROR 2
16 #define NTV_LOGON_ERROR 3
17
18 int Valid_User(char *USERNAME, char *PASSWORD, const char *SERVER, char *BACKUP, const char *DOMAIN);
19
20 #endif
21