mirror of
https://github.com/curl/curl.git
synced 2026-08-26 06:33:32 +03:00
curl_easy_setopt: Added the ability to set the login options separately
Rather than set the authentication options as part of the login details specified in the URL, or via the older CURLOPT_USERPWD option, added a new libcurl option to allow the login options to be set separately.
This commit is contained in:
parent
6901861fc9
commit
f2584627c8
8 changed files with 37 additions and 7 deletions
|
|
@ -89,6 +89,7 @@ options:
|
|||
CURLOPT_MAIL_AUTH
|
||||
CURLOPT_NETRC_FILE
|
||||
CURLOPT_NOPROXY
|
||||
CURLOPT_OPTIONS
|
||||
CURLOPT_PASSWORD
|
||||
CURLOPT_PROXY
|
||||
CURLOPT_PROXYPASSWORD
|
||||
|
|
|
|||
|
|
@ -1145,6 +1145,7 @@ curl_easy_setopt_ccsid(CURL * curl, CURLoption tag, ...)
|
|||
case CURLOPT_MAIL_AUTH:
|
||||
case CURLOPT_NETRC_FILE:
|
||||
case CURLOPT_NOPROXY:
|
||||
case CURLOPT_OPTIONS:
|
||||
case CURLOPT_PASSWORD:
|
||||
case CURLOPT_PROXY:
|
||||
case CURLOPT_PROXYPASSWORD:
|
||||
|
|
|
|||
|
|
@ -1180,6 +1180,8 @@
|
|||
d c 10222
|
||||
d CURLOPT_DNS_LOCAL_IP6...
|
||||
d c 10223
|
||||
d CURLOPT_OPTIONS...
|
||||
d c 10224
|
||||
*
|
||||
/if not defined(CURL_NO_OLDIES)
|
||||
d CURLOPT_SSLKEYPASSWD...
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue