From: Hugo Landau Date: Thu, 4 Apr 2024 10:51:04 +0000 (+0100) Subject: QUIC RADIX TEST: Ensure connection acceptance does not block X-Git-Tag: openssl-3.5.0-alpha1~411 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=01b151fbca5250e1a00c31f1f19d38c0c3517dac;p=thirdparty%2Fopenssl.git QUIC RADIX TEST: Ensure connection acceptance does not block Reviewed-by: Neil Horman Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/24037) --- diff --git a/test/radix/quic_ops.c b/test/radix/quic_ops.c index 955a5cb83f2..79398b8122b 100644 --- a/test/radix/quic_ops.c +++ b/test/radix/quic_ops.c @@ -266,7 +266,7 @@ DEF_FUNC(hf_accept_conn_none) REQUIRE_SSL(listener); - conn = SSL_accept_connection(listener, 0); + conn = SSL_accept_connection(listener, SSL_ACCEPT_CONNECTION_NO_BLOCK); if (!TEST_ptr_null(conn)) { SSL_free(conn); goto err;