aboutsummaryrefslogtreecommitdiff
path: root/lib/curl_ntlm_wb.h
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2019-05-15 16:10:56 +0100
committerSteve Holme <steve_holme@hotmail.com>2019-05-16 00:03:30 +0100
commitfe20826b580aa221f8f796cba236d08dc0fd80fd (patch)
tree6ed2951863f6f44b8b99f91dfa2bc7098304f90d /lib/curl_ntlm_wb.h
parentab4616f8cb4b2a736170ad70c03b6ab7347e63fe (diff)
http_ntlm_wb: Move the type-2 message processing into a dedicated function
This brings the code inline with the other HTTP authentication mechanisms. Closes #3890
Diffstat (limited to 'lib/curl_ntlm_wb.h')
-rw-r--r--lib/curl_ntlm_wb.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/curl_ntlm_wb.h b/lib/curl_ntlm_wb.h
index 919e9636a..3cf841cf2 100644
--- a/lib/curl_ntlm_wb.h
+++ b/lib/curl_ntlm_wb.h
@@ -27,8 +27,11 @@
#if !defined(CURL_DISABLE_HTTP) && defined(USE_NTLM) && \
defined(NTLM_WB_ENABLED)
-/* this is for creating ntlm header output by delegating challenge/response
- to Samba's winbind daemon helper ntlm_auth */
+/* this is for ntlm header input */
+CURLcode Curl_input_ntlm_wb(struct connectdata *conn, bool proxy,
+ const char *header);
+
+/* this is for creating ntlm header output */
CURLcode Curl_output_ntlm_wb(struct connectdata *conn, bool proxy);
void Curl_http_auth_cleanup_ntlm_wb(struct connectdata *conn);