summaryrefslogtreecommitdiff
path: root/test/helpers
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2023-01-10 17:52:18 +0000
committerHugo Landau <hlandau@openssl.org>2023-02-22 05:34:04 +0000
commitce8f20b6ae8f95493d86ed2f521ad2c371974f45 (patch)
treeeaaf98d071d7272e90a8de0409841319298c2168 /test/helpers
parentbe5b3b3787271d6b9057639ce42145fc66c11732 (diff)
downloadopenssl-new-ce8f20b6ae8f95493d86ed2f521ad2c371974f45.tar.gz
Don't treat the Tserver as connected until the handshake is confirmed
Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20030)
Diffstat (limited to 'test/helpers')
-rw-r--r--test/helpers/quictestlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helpers/quictestlib.c b/test/helpers/quictestlib.c
index 26d52600b2..017ba54b5b 100644
--- a/test/helpers/quictestlib.c
+++ b/test/helpers/quictestlib.c
@@ -177,7 +177,7 @@ int qtest_create_quic_connection(QUIC_TSERVER *qtserv, SSL *clientssl)
ossl_quic_tserver_tick(qtserv);
servererr = ossl_quic_tserver_is_term_any(qtserv, NULL);
if (!servererr)
- rets = ossl_quic_tserver_is_handshake_complete(qtserv);
+ rets = ossl_quic_tserver_is_handshake_confirmed(qtserv);
}
if (clienterr && servererr)