removing debug code from quic_impl

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)
This commit is contained in:
Neil Horman 2024-12-16 12:08:08 -05:00
parent 6d25809cd0
commit f42036822e
1 changed files with 0 additions and 2 deletions

View 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;
}