summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2022-05-12 14:54:08 +0200
committerPauli <pauli@openssl.org>2022-06-03 12:07:17 +1000
commit30b013291a502dce406708474a60fe58d5803e66 (patch)
tree92cae38e34e740a6bad0f0bc5762bbac90c4ed14 /Configure
parent30adf6d209002fab688aa76e313ac077e4b2f88c (diff)
downloadopenssl-new-30b013291a502dce406708474a60fe58d5803e66.tar.gz
Configure: Add disablable for QUIC, disabled by default
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/18307)
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure6
1 files changed, 5 insertions, 1 deletions
diff --git a/Configure b/Configure
index ce0fcb6e51..fa276dcd31 100755
--- a/Configure
+++ b/Configure
@@ -91,6 +91,8 @@ EOF
# zlib-dynamic Like "zlib", but the zlib library is expected to be a shared
# library and will be loaded in run-time by the OpenSSL library.
# sctp include SCTP support
+# enable-quic include QUIC support (currently just for developers as the
+# implementation is by no means complete and usable)
# no-uplink Don't build support for UPLINK interface.
# enable-weak-ssl-ciphers
# Enable weak ciphers that are disabled by default.
@@ -468,6 +470,7 @@ my @disablables = (
"poly1305",
"posix-io",
"psk",
+ "quic",
"rc2",
"rc4",
"rc5",
@@ -549,6 +552,7 @@ our %disabled = ( # "what" => "comment"
"ktls" => "default",
"md2" => "default",
"msan" => "default",
+ "quic" => "default",
"rc5" => "default",
"sctp" => "default",
"ssl3" => "default",
@@ -589,7 +593,7 @@ my @disable_cascades = (
"zlib" => [ "zlib-dynamic" ],
"des" => [ "mdc2" ],
"ec" => [ "ec2m", "ecdsa", "ecdh", "sm2", "gost" ],
- "dgram" => [ "dtls", "sctp" ],
+ "dgram" => [ "dtls", "quic", "sctp" ],
"sock" => [ "dgram", "tfo" ],
"dtls" => [ @dtls ],
sub { 0 == scalar grep { !$disabled{$_} } @dtls }