NTLM_WB: move NTLM_WB specifics into curl_ntlm_wb.[ch]

This commit is contained in:
Yang Tse
2011-08-27 19:16:10 +02:00
parent b976d108f1
commit 260ee6b7bf
11 changed files with 443 additions and 339 deletions

View File

@@ -50,6 +50,9 @@ void Curl_ntlm_sspi_cleanup(struct ntlmdata *ntlm);
/* NTLM buffer fixed size, large enough for long user + host + domain */
#define NTLM_BUFSIZE 1024
/* Stuff only required for curl_ntlm.c */
#ifdef BUILDING_CURL_NTLM_C
/* Flag bits definitions based on http://davenport.sourceforge.net/ntlm.html */
#define NTLMFLAG_NEGOTIATE_UNICODE (1<<0)
@@ -154,6 +157,8 @@ void Curl_ntlm_sspi_cleanup(struct ntlmdata *ntlm);
#define NTLMFLAG_NEGOTIATE_56 (1<<31)
/* Indicates that 56-bit encryption is supported. */
#endif /* BUILDING_CURL_NTLM_C */
#endif /* USE_NTLM */
#endif /* HEADER_CURL_NTLM_H */