From 0faf8078a8ab584758a6109b541a7c5d052a7647 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Thu, 18 Mar 2021 15:05:18 +0100 Subject: [PATCH] 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. --- src/ssl_sock.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ssl_sock.c b/src/ssl_sock.c index a87d70b89..b5da625fd 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