From 0e94bba0df257d47fb9623b9b95ef2b64402fde5 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Fri, 30 Jun 2023 16:27:29 +0100 Subject: [PATCH] Disable QUIC if TLSv1.3 is disabled QUIC depends on TLSv1.3, so if the latter is disabled then we must do the same for QUIC. Reviewed-by: Tim Hudson Reviewed-by: Tomas Mraz Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/21332) --- Configure | 1 + 1 file changed, 1 insertion(+) diff --git a/Configure b/Configure index 49bd868ab4a..976c9626a86 100755 --- a/Configure +++ b/Configure @@ -622,6 +622,7 @@ my @disable_cascades = ( "tls" => [ @tls ], sub { 0 == scalar grep { !$disabled{$_} } @tls } => [ "tls" ], + "tls1_3" => [ "quic" ], "crypto-mdebug" => [ "crypto-mdebug-backtrace" ], -- 2.47.2