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.
This commit is contained in:
Amaury Denoyelle 2022-02-14 17:14:35 +01:00
parent eb53e5baa1
commit bb56530470

View File

@ -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);