diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-03-31 04:41:05 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-03-31 04:41:05 +0000 |
commit | 25f611ca4279927d38327b3c8b4a9f81702cd127 (patch) | |
tree | 1c8f9072d764e0a8f144eaf53812b72cd12333f7 /lib/urldata.h | |
parent | e6eb49e7e0b6f0895fac8de07a928c292b738a37 (diff) | |
download | curl-25f611ca4279927d38327b3c8b4a9f81702cd127.tar.gz |
Guillaume Cottenceau's patch that adds CURLOPT_UNRESTRICTED_AUTH that
disables the host name check in the FOLLOWLOCATION code. With that option
set, libcurl will send user+password to all hosts.
Diffstat (limited to 'lib/urldata.h')
-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 93ad35b60..eb5952174 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -736,6 +736,7 @@ struct UserDefined { bool hide_progress; bool http_fail_on_error; bool http_follow_location; + bool http_disable_hostname_check_before_authentication; bool include_header; #define http_include_header include_header /* former name */ |