~squid/squid/sbuf-use

« back to all changes in this revision

Viewing changes to helpers/ntlm_auth/SMB/smbval/valid.h

  • Committer: hno
  • Date: 2001-01-08 06:32:04 UTC
  • Revision ID: cvs-1:hno-20010108063204-w6a8e1zz6eprqnp8
Major rewrite of proxy authentication to support other schemes than
Basic (auth_rewrite branch on SourceForge).
Contributors:
   Andy Doran
   Robert Collins
   Chemolli Francesco
   Henrik Nordstrom

For details about the new API's, see Programmers Guide.

As part of this change everything from auth_modules has been moved to
src/auth/basic/helpers

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _VALID_H_
 
2
#define _VALID_H_
 
3
/* SMB User verification function */
 
4
 
 
5
#define NTV_NO_ERROR 0
 
6
#define NTV_SERVER_ERROR 1
 
7
#define NTV_PROTOCOL_ERROR 2
 
8
#define NTV_LOGON_ERROR 3
 
9
 
 
10
int Valid_User(char *USERNAME, char *PASSWORD, char *SERVER, char *BACKUP, char *DOMAIN);
 
11
void *NTLM_Connect(char *SERVER, char *BACKUP, char *DOMAIN, char *nonce);
 
12
int NTLM_Auth(void *handle, char *USERNAME, char *PASSWORD, int flag);
 
13
void NTLM_Disconnect(void *handle);
 
14
 
 
15
#endif