From: Amaury Denoyelle Date: Fri, 27 Aug 2021 13:05:29 +0000 (+0200) Subject: MINOR: mux-quic: send SETTINGS on uni stream X-Git-Tag: v2.5-dev8~56 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7b1d3d6d3dc2938ac52d793630a50d8f05b9aa7e;p=thirdparty%2Fhaproxy.git MINOR: mux-quic: send SETTINGS on uni stream --- diff --git a/src/mux_quic.c b/src/mux_quic.c index 41a6ce1e14..f870f708ef 100644 --- a/src/mux_quic.c +++ b/src/mux_quic.c @@ -1969,6 +1969,7 @@ size_t luqs_snd_buf(struct qcs *qcs, struct buffer *buf, size_t count, int flags count = room; total += b_xfer(res, buf, count); + qcs_push_frame(qcs, res, 0, 0); out: TRACE_LEAVE(QC_EV_QCS_SEND|QC_EV_STRM_SEND, qcs->qcc->conn);