mirror of
https://github.com/moparisthebest/curl
synced 2025-01-11 14:08:07 -05:00
ngtcp2: disable TLSv1.3 compatible mode when using GnuTLS
The latest GnuTLS-3.7.2 implements disable switch for TLSv1.3 compatible mode for middle box but it is enabled by default, which is unnecessary for QUIC. Fixes #6896 Closes #7202
This commit is contained in:
parent
3ac9b80525
commit
a3a298da5e
@ -86,7 +86,8 @@ struct h3out {
|
||||
#define QUIC_PRIORITY \
|
||||
"NORMAL:-VERS-ALL:+VERS-TLS1.3:-CIPHER-ALL:+AES-128-GCM:+AES-256-GCM:" \
|
||||
"+CHACHA20-POLY1305:+AES-128-CCM:-GROUP-ALL:+GROUP-SECP256R1:" \
|
||||
"+GROUP-X25519:+GROUP-SECP384R1:+GROUP-SECP521R1"
|
||||
"+GROUP-X25519:+GROUP-SECP384R1:+GROUP-SECP521R1:" \
|
||||
"%DISABLE_TLS13_COMPAT_MODE"
|
||||
#endif
|
||||
|
||||
static CURLcode ng_process_ingress(struct Curl_easy *data,
|
||||
|
Loading…
Reference in New Issue
Block a user