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.
This commit is contained in:
Alessandro Ghedini 2015-02-14 16:57:07 +01:00 committed by Kamil Dudka
parent a332922a52
commit 4dcd25e138
9 changed files with 87 additions and 5 deletions

View file

@ -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;