summaryrefslogtreecommitdiff
path: root/lib/curl_ntlm_wb.h
diff options
context:
space:
mode:
authorSeonah Moon <seonah1.moon@samsung.com>2020-02-24 15:56:49 +0900
committerSeonah Moon <seonah1.moon@samsung.com>2020-02-24 15:57:31 +0900
commit1127a2d91941b474b346c96a1499f3493a3f0f40 (patch)
treee6734b853d299aa98a3653cebf0233a712c07009 /lib/curl_ntlm_wb.h
parentbc9ddd35af69662a667d983e2484f557f76cf230 (diff)
downloadcurl-1127a2d91941b474b346c96a1499f3493a3f0f40.tar.gz
curl-1127a2d91941b474b346c96a1499f3493a3f0f40.tar.bz2
curl-1127a2d91941b474b346c96a1499f3493a3f0f40.zip
Imported Upstream version 7.68.0upstream/7.68.0
Change-Id: I37422e43c2c4c25904a4fc2a391c4a32ba3b9f5c
Diffstat (limited to 'lib/curl_ntlm_wb.h')
-rw-r--r--lib/curl_ntlm_wb.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/curl_ntlm_wb.h b/lib/curl_ntlm_wb.h
index aba3d469c..3cf841cf2 100644
--- a/lib/curl_ntlm_wb.h
+++ b/lib/curl_ntlm_wb.h
@@ -7,7 +7,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -27,11 +27,14 @@
#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_ntlm_wb_cleanup(struct connectdata *conn);
+void Curl_http_auth_cleanup_ntlm_wb(struct connectdata *conn);
#endif /* !CURL_DISABLE_HTTP && USE_NTLM && NTLM_WB_ENABLED */