diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-08-11 11:54:14 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-08-11 11:54:14 +0000 |
commit | 1679993e3baa9f14932031b718d7a8ea24ccae57 (patch) | |
tree | 97c5d09d4911da79b90ced617ad31700af29aa77 | |
parent | 4c831f8b682af6001dc6cdb2815151d54a50cb6e (diff) |
CURLOPT_PROXYAUTH explained
-rw-r--r-- | docs/libcurl/curl_easy_setopt.3 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/libcurl/curl_easy_setopt.3 b/docs/libcurl/curl_easy_setopt.3 index 830428cec..e2cdcf3b9 100644 --- a/docs/libcurl/curl_easy_setopt.3 +++ b/docs/libcurl/curl_easy_setopt.3 @@ -376,6 +376,17 @@ This is a convenience macro that sets all bits except Basic and thus makes libcurl pick any it finds suitable. libcurl will automaticly select the one it finds most secure. .RE +.TP +.B CURLOPT_PROXYAUTH +Pass a long as parameter, which is set to a bitmask, to tell libcurl what +authentication method(s) you want it to use for your proxy authentication. If +more than one bit is set, libcurl will first query the site to see what +authentication methods it supports and then pick the best one you allow it to +use. Note that for some methods, this will induce an extra network +round-trip. Set the actual name and password with the +\fICURLOPT_PROXYUSERPWD\fP option. The bitmask can be constructed by or'ing +together the bits listed above for the \fICURLOPT_HTTPAUTH\fP option. As of +this writing, only Basic and NTLM work. (Added in 7.10.7) .PP .SH HTTP OPTIONS .TP 0.4i |