mirror of
https://github.com/haproxy/haproxy.git
synced 2026-06-11 09:52:56 -04:00
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:
parent
eb53e5baa1
commit
bb56530470
1 changed files with 1 additions and 0 deletions
1
src/h3.c
1
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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue