From bb565304701207005624b9f6c4e6b87d20748468 Mon Sep 17 00:00:00 2001 From: Amaury Denoyelle Date: Mon, 14 Feb 2022 17:14:35 +0100 Subject: [PATCH] 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. --- src/h3.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/h3.c b/src/h3.c index 6616db6ae..b6df43045 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);