MINOR: quic_sock: Finalize the QUIC connections.

Add a call to conn_connection_complete() so that to install the mux any
QUIC connection.
This commit is contained in:
Frédéric Lécaille 2021-03-03 16:21:00 +01:00 committed by Amaury Denoyelle
parent b4672fb6f0
commit 27faba7240

View File

@ -66,7 +66,10 @@ int quic_session_accept(struct connection *cli_conn)
conn_set_owner(cli_conn, sess, NULL); conn_set_owner(cli_conn, sess, NULL);
return 1; if (conn_complete_session(cli_conn) >= 0)
return 1;
return 0;
out_free_sess: out_free_sess:
/* prevent call to listener_release during session_free. It will be /* prevent call to listener_release during session_free. It will be