From 6f2a4d290fd0ebe3bf5bed7bb11fd0891323cec9 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 22 Jul 2003 09:58:18 +0000 Subject: [PATCH] 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. --- lib/urldata.h | 1 + 1 file changed, 1 insertion(+) 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. */