diff options
author | Alessandro Ghedini <alessandro@ghedini.me> | 2015-02-14 16:57:07 +0100 |
---|---|---|
committer | Kamil Dudka <kdudka@redhat.com> | 2015-03-20 20:14:33 +0100 |
commit | 4dcd25e138e9c18a4c96cb78bca5749d8431699f (patch) | |
tree | d061485adaefcfea53e76e599b1e98da63ad776a /include | |
parent | a332922a526f91876fc8ffa73a45322800bf0e73 (diff) |
url: add CURLOPT_SSL_FALSESTART option
This option can be used to enable/disable TLS False Start defined in the RFC
draft-bmoeller-tls-falsestart.
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 0a326d3ba..4fcbd578b 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -1626,6 +1626,9 @@ typedef enum { /* Set if we should verify the certificate status. */ CINIT(SSL_VERIFYSTATUS, LONG, 232), + /* Set if we should enable TLS false start. */ + CINIT(SSL_FALSESTART, LONG, 233), + CURLOPT_LASTENTRY /* the last unused */ } CURLoption; |