diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-07-22 09:58:18 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-07-22 09:58:18 +0000 |
commit | 6f2a4d290fd0ebe3bf5bed7bb11fd0891323cec9 (patch) | |
tree | 450ebc425365d6718f527e8369e10bcbef88aadf | |
parent | cefc8ba938c8567a2cc7cff888c09457a542d231 (diff) |
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.
-rw-r--r-- | lib/urldata.h | 1 |
1 files changed, 1 insertions, 0 deletions
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. */ |