diff options
author | Kamil Dudka <kdudka@redhat.com> | 2016-10-27 14:57:11 +0200 |
---|---|---|
committer | Kamil Dudka <kdudka@redhat.com> | 2016-11-07 11:52:07 +0100 |
commit | 6ad3add60654182a747f5971afb40817488ef0e8 (patch) | |
tree | 7e45ea9851feb2bc253503c35967a46098f438b5 /include | |
parent | 5d45ced7a45ea38e32f1cbf73d7c63a3e4f241e7 (diff) |
vtls: support TLS 1.3 via CURL_SSLVERSION_TLSv1_3
Fully implemented with the NSS backend only for now.
Reviewed-by: Ray Satiro
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 9c09cb966..03fcfebc3 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -1805,6 +1805,7 @@ enum { CURL_SSLVERSION_TLSv1_0, CURL_SSLVERSION_TLSv1_1, CURL_SSLVERSION_TLSv1_2, + CURL_SSLVERSION_TLSv1_3, CURL_SSLVERSION_LAST /* never use, keep last */ }; |