]> git.ipfire.org Git - thirdparty/openssl.git/commit
Implement SSL_new_from_listener()
authorAlexandr Nedvedicky <sashan@openssl.org>
Mon, 9 Dec 2024 09:49:05 +0000 (10:49 +0100)
committerNeil Horman <nhorman@openssl.org>
Mon, 17 Feb 2025 16:27:33 +0000 (11:27 -0500)
commit0b15147a37c5eeab01862fc374eeac11d4fb173b
tree6b0ae7653a54428edc965ed4bef7a00f45fb8f68
parent6bae611c99f97a956032da64d8b64e5ee7b53a2b
Implement SSL_new_from_listener()

SSL_new_from_listner() creates QUIC connection object (QCSO)
from listener. Caller can use the object retuned from
SSL_new_from_listener() to connect to remote QUIC server.
The QCSO created here shares engine/port with listener.

the change is covered by `test_ssl_new_from_listener()` in
test/quicapitest.c

Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26138)
ssl/quic/quic_channel.c
ssl/quic/quic_impl.c
test/quicapitest.c