We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4f3df09 + d81b651 commit 4f13731Copy full SHA for 4f13731
Documentation/config.txt
@@ -1957,6 +1957,7 @@ http.sslVersion::
1957
- tlsv1.0
1958
- tlsv1.1
1959
- tlsv1.2
1960
+ - tlsv1.3
1961
1962
+
1963
Can be overridden by the `GIT_SSL_VERSION` environment variable.
http.c
@@ -62,6 +62,9 @@ static struct {
62
{ "tlsv1.1", CURL_SSLVERSION_TLSv1_1 },
63
{ "tlsv1.2", CURL_SSLVERSION_TLSv1_2 },
64
#endif
65
+#if LIBCURL_VERSION_NUM >= 0x073400
66
+ { "tlsv1.3", CURL_SSLVERSION_TLSv1_3 },
67
+#endif
68
};
69
#if LIBCURL_VERSION_NUM >= 0x070903
70
static const char *ssl_key;
0 commit comments