MINOR: quic: Update the streams transport parameters.

Set the streams transport parameters which could not be initialized because they
were not available during initializations. Indeed, the streams transport parameters
are provided by the peer during the handshake.
This commit is contained in:
Frédéric Lécaille 2021-03-18 15:05:18 +01:00 committed by Amaury Denoyelle
parent 738397065c
commit 0faf8078a8

View File

@ -2464,6 +2464,8 @@ int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg)
if (!quic_transport_params_store(conn->qc, 0, extension_data, if (!quic_transport_params_store(conn->qc, 0, extension_data,
extension_data + extension_len)) extension_data + extension_len))
goto abort; goto abort;
quic_mux_transport_params_update(conn->qc->qcc);
} }
#endif #endif