From: Hugo Landau Date: Mon, 13 May 2024 19:20:23 +0000 (+0100) Subject: QUIC RADIX: Use enhanced blocking support when testing X-Git-Tag: openssl-3.5.0-alpha1~341 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=567a9eed6502e559f5c375bc218b9689ee37c271;p=thirdparty%2Fopenssl.git QUIC RADIX: Use enhanced blocking support when testing Reviewed-by: Matt Caswell Reviewed-by: Saša Nedvědický Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/25416) --- 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;