diff options
author | Kamil Dudka <kdudka@redhat.com> | 2016-10-27 14:58:43 +0200 |
---|---|---|
committer | Kamil Dudka <kdudka@redhat.com> | 2016-11-07 12:07:11 +0100 |
commit | a110a03b43057879643046538c79cc9dd20d399a (patch) | |
tree | f35f5bf60427950ecebf2c65c23f800b7ac6d7b2 /src/tool_setopt.c | |
parent | 6ad3add60654182a747f5971afb40817488ef0e8 (diff) | |
download | curl-a110a03b43057879643046538c79cc9dd20d399a.tar.gz |
curl: introduce the --tlsv1.3 option to force TLS 1.3
Fully implemented with the NSS backend only for now.
Reviewed-by: Ray Satiro
Diffstat (limited to 'src/tool_setopt.c')
-rw-r--r-- | src/tool_setopt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tool_setopt.c b/src/tool_setopt.c index c854225e4..f3de09dee 100644 --- a/src/tool_setopt.c +++ b/src/tool_setopt.c @@ -83,6 +83,7 @@ const NameValue setopt_nv_CURL_SSLVERSION[] = { NV(CURL_SSLVERSION_TLSv1_0), NV(CURL_SSLVERSION_TLSv1_1), NV(CURL_SSLVERSION_TLSv1_2), + NV(CURL_SSLVERSION_TLSv1_3), NVEND, }; |