CURLOPT_ISSUERCERT
CURLOPT_USERNAME
CURLOPT_PASSWORD
+ CURLOPT_PROXYUSERNAME
+ CURLOPT_PROXYPASSWORD
Else it is the same as for curl_easy_setopt().
Note that CURLOPT_ERRORBUFFER is not in the list above, since it gives the
address of an (empty) character buffer, not the address of a string.
if (testwarn) {
testwarn = 0;
- if ((int) STRING_LAST != (int) STRING_PASSWORD + 1)
+ if ((int) STRING_LAST != (int) STRING_PROXYPASSWORD + 1)
curl_mfprintf(stderr,
"*** WARNING: curl_easy_setopt_ccsid() should be reworked ***\n");
}
case CURLOPT_ISSUERCERT:
case CURLOPT_USERNAME:
case CURLOPT_PASSWORD:
+ case CURLOPT_PROXYUSERNAME:
+ case CURLOPT_PROXYPASSWORD:
s = va_arg(arg, char *);
ccsid = va_arg(arg, unsigned int);