From: Frédéric Lécaille Date: Wed, 3 Mar 2021 15:21:00 +0000 (+0100) Subject: MINOR: quic_sock: Finalize the QUIC connections. X-Git-Tag: v2.5-dev8~148 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=27faba7240a69a7c102444510f47dc3e49228da9;p=thirdparty%2Fhaproxy.git MINOR: quic_sock: Finalize the QUIC connections. Add a call to conn_connection_complete() so that to install the mux any QUIC connection. --- diff --git a/src/quic_sock.c b/src/quic_sock.c index f349932f5f..1a5cf69df2 100644 --- a/src/quic_sock.c +++ b/src/quic_sock.c @@ -66,7 +66,10 @@ int quic_session_accept(struct connection *cli_conn) conn_set_owner(cli_conn, sess, NULL); - return 1; + if (conn_complete_session(cli_conn) >= 0) + return 1; + + return 0; out_free_sess: /* prevent call to listener_release during session_free. It will be