mirror of
https://github.com/curl/curl.git
synced 2026-08-13 16:00:54 +03:00
parent
a337355487
commit
ede125b7b7
20 changed files with 131 additions and 1 deletions
|
|
@ -2241,6 +2241,14 @@ CURLcode Curl_vsetopt(struct Curl_easy *data, CURLoption option, va_list param)
|
|||
break;
|
||||
#endif
|
||||
|
||||
case CURLOPT_SSL_EC_CURVES:
|
||||
/*
|
||||
* Set accepted curves in SSL connection setup.
|
||||
* Specify colon-delimited list of curve algorithm names.
|
||||
*/
|
||||
result = Curl_setstropt(&data->set.str[STRING_SSL_EC_CURVES],
|
||||
va_arg(param, char *));
|
||||
break;
|
||||
#endif
|
||||
case CURLOPT_IPRESOLVE:
|
||||
arg = va_arg(param, long);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue