From 567a9eed6502e559f5c375bc218b9689ee37c271 Mon Sep 17 00:00:00 2001 From: Hugo Landau Date: Mon, 13 May 2024 20:20:23 +0100 Subject: [PATCH] QUIC RADIX: Use enhanced blocking support when testing MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reviewed-by: Matt Caswell Reviewed-by: Saša Nedvědický Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/25416) --- test/radix/quic_ops.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/radix/quic_ops.c b/test/radix/quic_ops.c index 47949dececd..3ff063f5d6d 100644 --- a/test/radix/quic_ops.c +++ b/test/radix/quic_ops.c @@ -150,6 +150,11 @@ DEF_FUNC(hf_new_ssl) if (!TEST_ptr(ctx = SSL_CTX_new(method))) goto err; + if (!TEST_true(SSL_CTX_set_domain_flags(ctx, + SSL_DOMAIN_FLAG_MULTI_THREAD + | SSL_DOMAIN_FLAG_BLOCKING))) + goto err; + if (!TEST_true(ssl_ctx_configure(ctx, is_server))) goto err; -- 2.47.2