aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2019-05-09 00:30:09 +0100
committerSteve Holme <steve_holme@hotmail.com>2020-02-03 21:29:11 +0000
commitf41deddde879c15350df880b1c8959bb521cd679 (patch)
tree24268d79c9c143dd3cf690ddd5d9bf13a1b1912e /lib/urldata.h
parent5cd0f5cc7fbbb4d0bf098b2eb95611eb7b987eff (diff)
ntlm: Ensure the HTTP header data is not stored in the challenge/response
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index 239f65ec7..e2afc6406 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -372,8 +372,8 @@ struct ntlmdata {
/* used for communication with Samba's winbind daemon helper ntlm_auth */
curl_socket_t ntlm_auth_hlpr_socket;
pid_t ntlm_auth_hlpr_pid;
- char *challenge_header;
- char *response_header;
+ char *challenge; /* The received base64 encoded ntlm type-2 message */
+ char *response; /* The generated base64 ntlm type-1/type-3 message */
#endif
#endif
};