mirror of
https://github.com/curl/curl.git
synced 2026-08-24 14:03:35 +03:00
url, vtls: make CURLOPT{,_PROXY}_TLS13_CIPHERS work
This is a follow-up to PR #2607 and PR #2926. Closes #2936
This commit is contained in:
parent
351c0f3a55
commit
52c13d6328
2 changed files with 8 additions and 1 deletions
|
|
@ -4334,6 +4334,10 @@ static CURLcode create_conn(struct Curl_easy *data,
|
|||
data->set.str[STRING_SSL_CIPHER_LIST_ORIG];
|
||||
data->set.proxy_ssl.primary.cipher_list =
|
||||
data->set.str[STRING_SSL_CIPHER_LIST_PROXY];
|
||||
data->set.ssl.primary.cipher_list13 =
|
||||
data->set.str[STRING_SSL_CIPHER13_LIST_ORIG];
|
||||
data->set.proxy_ssl.primary.cipher_list13 =
|
||||
data->set.str[STRING_SSL_CIPHER13_LIST_PROXY];
|
||||
|
||||
data->set.ssl.CRLfile = data->set.str[STRING_SSL_CRLFILE_ORIG];
|
||||
data->set.proxy_ssl.CRLfile = data->set.str[STRING_SSL_CRLFILE_PROXY];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue