mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-10 09:07:02 +02:00
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:
parent
b4672fb6f0
commit
27faba7240
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user