From: Daniel Stenberg Date: Tue, 22 Jul 2003 09:58:18 +0000 (+0000) Subject: Added a separate struct for the proxyntlm data, as it will/can be different X-Git-Tag: curl-7_10_6~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6f2a4d290fd0ebe3bf5bed7bb11fd0891323cec9;p=curl Added a separate struct for the proxyntlm data, as it will/can be different than the remote server's. That is, both the server and the proxy can in fact require NTLM auth. --- diff --git a/lib/urldata.h b/lib/urldata.h index abc944499..3318b7f57 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -537,6 +537,7 @@ struct connectdata { struct ntlmdata ntlm; /* NTLM differs from other authentication schemes because it authenticates connections, not single requests! */ + struct ntlmdata proxyntlm; /* NTLM data for proxy */ }; /* The end of connectdata. */