diff options
Diffstat (limited to 'lib/http_ntlm.h')
-rw-r--r-- | lib/http_ntlm.h | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/lib/http_ntlm.h b/lib/http_ntlm.h index 635d6313b..a074380a3 100644 --- a/lib/http_ntlm.h +++ b/lib/http_ntlm.h @@ -22,6 +22,8 @@ * ***************************************************************************/ +#ifdef USE_NTLM + /* this is for ntlm header input */ CURLcode Curl_input_ntlm(struct connectdata *conn, bool proxy, const char *header); @@ -29,18 +31,12 @@ CURLcode Curl_input_ntlm(struct connectdata *conn, bool proxy, /* this is for creating ntlm header output */ CURLcode Curl_output_ntlm(struct connectdata *conn, bool proxy); -#ifdef NTLM_WB_ENABLED -/* this is for creating ntlm header output by delegating challenge/response - to Samba's winbind daemon helper ntlm_auth */ -CURLcode Curl_output_ntlm_wb(struct connectdata *conn, bool proxy); -#endif - -#ifdef USE_NTLM void Curl_http_ntlm_cleanup(struct connectdata *conn); + #else -#define Curl_http_ntlm_cleanup(x) -#endif -#include "curl_ntlm.h" +#define Curl_http_ntlm_cleanup(a) + +#endif #endif /* HEADER_CURL_HTTP_NTLM_H */ |