1CURLOPT_SSL_FALSESTART(3) libcurl CURLOPT_SSL_FALSESTART(3)
2
3
4
6 CURLOPT_SSL_FALSESTART - TLS false start
7
9 #include <curl/curl.h>
10
11 CURLcode curl_easy_setopt(CURL *handle, CURLOPT_SSL_FALSESTART, long enable);
12
14 Pass a long as parameter set to 1L to enable or 0 to disable.
15
16 This option determines whether libcurl should use false start during
17 the TLS handshake. False start is a mode where a TLS client will start
18 sending application data before verifying the server's Finished mes‐
19 sage, thus saving a round trip when performing a full handshake.
20
22 0
23
25 All TLS based protocols: HTTPS, FTPS, IMAPS, POP3S, SMTPS etc.
26
28 CURL *curl = curl_easy_init();
29 if(curl) {
30 curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
31 curl_easy_setopt(curl, CURLOPT_SSL_FALSESTART, 1L);
32 curl_easy_perform(curl);
33 }
34
36 Added in 7.42.0. This option is currently only supported by the NSS and
37 Secure Transport (on iOS 7.0 or later, or OS X 10.9 or later) TLS back‐
38 ends.
39
41 Returns CURLE_OK if false start is supported by the SSL backend, other‐
42 wise returns CURLE_NOT_BUILT_IN.
43
45 CURLOPT_TCP_FASTOPEN(3),
46
47
48
49ibcurl 8.2.1 April 26, 2023 CURLOPT_SSL_FALSESTART(3)