summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2024-04-04 11:51:04 +0100
committerHugo Landau <hlandau@openssl.org>2024-04-19 09:33:53 +0100
commit17ff3b8ebe439f461945d9aecf6018f4db51bda5 (patch)
tree63076ac9cdcf074133fd92a5eb3577cdec13d685
parentbb691573dfce225ece81a8cb8f56e53703e0973a (diff)
QUIC RADIX TEST: Ensure connection acceptance does not block
Reviewed-by: Neil Horman <nhorman@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/24037)
-rw-r--r--test/radix/quic_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/radix/quic_ops.c b/test/radix/quic_ops.c
index 955a5cb83f..79398b8122 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;