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: upstream/7.37.1~14442 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6f2a4d290fd0ebe3bf5bed7bb11fd0891323cec9;p=platform%2Fupstream%2Fcurl.git 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 abc9444..3318b7f 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. */