From: Frédéric Lécaille Date: Thu, 18 Mar 2021 14:05:18 +0000 (+0100) Subject: MINOR: quic: Update the streams transport parameters. X-Git-Tag: v2.5-dev8~142 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0faf8078a8ab584758a6109b541a7c5d052a7647;p=thirdparty%2Fhaproxy.git 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. --- diff --git a/src/ssl_sock.c b/src/ssl_sock.c index a87d70b895..b5da625fd2 100644 --- a/src/ssl_sock.c +++ b/src/ssl_sock.c @@ -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, extension_data + extension_len)) goto abort; + + quic_mux_transport_params_update(conn->qc->qcc); } #endif