]> git.ipfire.org Git - thirdparty/squid.git/blob - helpers/basic_auth/MSNT/valid.h
Boilerplate: update copyright blurbs for Basic authentication helpers
[thirdparty/squid.git] / helpers / basic_auth / MSNT / valid.h
1 /*
2 * Copyright (C) 1996-2014 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, char *SERVER, char *BACKUP, char *DOMAIN);
19
20 #endif