From: Matt Caswell Date: Mon, 7 Apr 2025 08:58:30 +0000 (+0100) Subject: Fix SSL_accept() X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=38bf6f3036d1baddbe4618a219aaf17d460091d9;p=thirdparty%2Fopenssl.git Fix SSL_accept() If you have a QUIC server SSL connection object, you should be able to call SSL_accept() on it. Fixes #27282 Reviewed-by: Neil Horman Reviewed-by: Saša Nedvědický (Merged from https://github.com/openssl/openssl/pull/27283) --- diff --git a/ssl/quic/quic_method.c b/ssl/quic/quic_method.c index 0de2bca47e6..8092855efc6 100644 --- a/ssl/quic/quic_method.c +++ b/ssl/quic/quic_method.c @@ -23,5 +23,5 @@ IMPLEMENT_quic_meth_func(OSSL_QUIC_ANY_VERSION, IMPLEMENT_quic_meth_func(OSSL_QUIC_ANY_VERSION, OSSL_QUIC_server_method, - ssl_undefined_function, - ossl_quic_connect, ssl3_undef_enc_method) + ossl_quic_accept, + ssl_undefined_function, ssl3_undef_enc_method)