diff options
author | Yang Tse <yangsita@gmail.com> | 2011-08-27 19:16:10 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-08-27 19:16:10 +0200 |
commit | 260ee6b7bfbc4a49832a1e322d1cc5d9d3c33ddf (patch) | |
tree | 41df8db943b4c899ec09a8806f6a9d55c3896905 /lib/curl_ntlm.h | |
parent | b976d108f1beecff743f912f190ffc89f1ef9098 (diff) | |
download | curl-260ee6b7bfbc4a49832a1e322d1cc5d9d3c33ddf.tar.gz |
NTLM_WB: move NTLM_WB specifics into curl_ntlm_wb.[ch]
Diffstat (limited to 'lib/curl_ntlm.h')
-rw-r--r-- | lib/curl_ntlm.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/curl_ntlm.h b/lib/curl_ntlm.h index ef3dfc1e4..fb6cad764 100644 --- a/lib/curl_ntlm.h +++ b/lib/curl_ntlm.h @@ -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 */ |