mirror of
https://github.com/curl/curl.git
synced 2026-04-14 22:21:41 +03:00
tls: remove Curl_ssl false_start
The secure transport vTLS backend was the only Curl_ssl struct instance that populated the false_start field. Since its removed, we can now remove that field entirely. This was a protocol feature specific to TLS 1.2 that has been replaced by the more widely adopted TLS 1.3 early data mechanisms. --false-start is now deprecated Closes #17595
This commit is contained in:
parent
220c5d8f49
commit
1e2e808def
15 changed files with 3 additions and 34 deletions
|
|
@ -377,8 +377,6 @@ static CURLcode doh_probe_run(struct Curl_easy *data,
|
|||
options should be added to check doh proxy insecure separately,
|
||||
CURLOPT_DOH_PROXY_SSL_VERIFYHOST and CURLOPT_DOH_PROXY_SSL_VERIFYPEER.
|
||||
*/
|
||||
if(data->set.ssl.falsestart)
|
||||
ERROR_CHECK_SETOPT(CURLOPT_SSL_FALSESTART, 1L);
|
||||
if(data->set.str[STRING_SSL_CAFILE]) {
|
||||
ERROR_CHECK_SETOPT(CURLOPT_CAINFO,
|
||||
data->set.str[STRING_SSL_CAFILE]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue