mirror of
https://github.com/curl/curl.git
synced 2025-09-13 15:42:39 +03:00
rustls: remove incorrect SSLSUPP_TLS13_CIPHERSUITES flag
The rustls backend advertises SSLSUPP_TLS13_CIPHERSUITES, but the code does not actually seem to support it (yet?). Removed the flag and corrected documentation. Closes #13452
This commit is contained in:
parent
cfb9991723
commit
3b8db84c1b
|
@ -14,7 +14,6 @@ Protocol:
|
||||||
- TLS
|
- TLS
|
||||||
TLS-backend:
|
TLS-backend:
|
||||||
- OpenSSL
|
- OpenSSL
|
||||||
- rustls
|
|
||||||
- Schannel
|
- Schannel
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,6 @@ Protocol:
|
||||||
- TLS
|
- TLS
|
||||||
TLS-backend:
|
TLS-backend:
|
||||||
- OpenSSL
|
- OpenSSL
|
||||||
- rustls
|
|
||||||
- Schannel
|
- Schannel
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -725,7 +725,6 @@ static size_t cr_version(char *buffer, size_t size)
|
||||||
const struct Curl_ssl Curl_ssl_rustls = {
|
const struct Curl_ssl Curl_ssl_rustls = {
|
||||||
{ CURLSSLBACKEND_RUSTLS, "rustls" },
|
{ CURLSSLBACKEND_RUSTLS, "rustls" },
|
||||||
SSLSUPP_CAINFO_BLOB | /* supports */
|
SSLSUPP_CAINFO_BLOB | /* supports */
|
||||||
SSLSUPP_TLS13_CIPHERSUITES |
|
|
||||||
SSLSUPP_HTTPS_PROXY,
|
SSLSUPP_HTTPS_PROXY,
|
||||||
sizeof(struct rustls_ssl_backend_data),
|
sizeof(struct rustls_ssl_backend_data),
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user