From: Amaury Denoyelle Date: Mon, 14 Feb 2022 16:14:35 +0000 (+0100) Subject: MINOR: h3: set CS_FL_NOT_FIRST X-Git-Tag: v2.6-dev2~144 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bb565304701207005624b9f6c4e6b87d20748468;p=thirdparty%2Fhaproxy.git MINOR: h3: set CS_FL_NOT_FIRST When creating a new conn-stream on H3 HEADERS parsing, the flag CS_FL_NOT_FIRST must be set. This is identical to the mux-h2. --- diff --git a/src/h3.c b/src/h3.c index 6616db6aed..b6df430454 100644 --- a/src/h3.c +++ b/src/h3.c @@ -207,6 +207,7 @@ static int h3_decode_qcs(struct qcs *qcs, int fin, void *ctx) htx->flags |= HTX_FL_EOM; cs = cs_new(qcs->qcc->conn, qcs->qcc->conn->target); + cs->flags |= CS_FL_NOT_FIRST; cs->ctx = qcs; stream_create_from_cs(cs, &htx_buf);