]> git.ipfire.org Git - thirdparty/squid.git/blame - helpers/basic_auth/SMB_LM/valid.h
SourceFormat Enforcement
[thirdparty/squid.git] / helpers / basic_auth / SMB_LM / valid.h
CommitLineData
5b95b903 1/*
bde978a6 2 * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
5b95b903
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
94439e4e 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
b5e27f8f 18int Valid_User(char *USERNAME, char *PASSWORD, const char *SERVER, char *BACKUP, const char *DOMAIN);
94439e4e 19
20#endif
f53969cc 21