]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
removing debug code from quic_impl
authorNeil Horman <nhorman@openssl.org>
Mon, 16 Dec 2024 17:08:08 +0000 (12:08 -0500)
committerNeil Horman <nhorman@openssl.org>
Sat, 11 Jan 2025 21:02:29 +0000 (16:02 -0500)
I had experimented with starting the ssl handshake during accept, and
forgot to remove it

Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Saša Nedvědický <sashan@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26178)

ssl/quic/quic_impl.c

index 17d0d621ceea610192becccc9e356167b0086d0a..e8b0888bcad00636c2547199cff2b30f56c7cb5e 100644 (file)
@@ -4436,8 +4436,6 @@ SSL *ossl_quic_accept_connection(SSL *ssl, uint64_t flags)
 
 out:
     qctx_unlock(&ctx);
-    if (qc != NULL)
-        ossl_quic_do_handshake(&qc->obj.ssl);
     return qc != NULL ? &qc->obj.ssl : NULL;
 }