mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-10-27 22:51:02 +01:00
MINOR: h3: Set known input payload length of the sedesc
Set <kip> value when data are transfer to the upper layer, in h3_rcv_buf(). The difference between the known length of the payload before and after a parsing loop is added to <kip> value. When a content-length is specified in the message, the h3s <body_len> field is used. Otherwise, it is the h3s <data_len> field.
This commit is contained in:
parent
bc8c6c42f4
commit
f6a4d41dd0
3
src/h3.c
3
src/h3.c
@ -1684,6 +1684,7 @@ static ssize_t h3_rcv_buf(struct qcs *qcs, struct buffer *b, int fin)
|
|||||||
struct h3s *h3s = qcs->ctx;
|
struct h3s *h3s = qcs->ctx;
|
||||||
struct h3c *h3c = h3s->h3c;
|
struct h3c *h3c = h3s->h3c;
|
||||||
ssize_t total = 0, ret = 0;
|
ssize_t total = 0, ret = 0;
|
||||||
|
uint64_t prev_data_len = ((h3s->flags & H3_SF_HAVE_CLEN) ? h3s->body_len : h3s->data_len);
|
||||||
|
|
||||||
TRACE_ENTER(H3_EV_RX_FRAME, qcs->qcc->conn, qcs);
|
TRACE_ENTER(H3_EV_RX_FRAME, qcs->qcc->conn, qcs);
|
||||||
|
|
||||||
@ -1892,6 +1893,8 @@ static ssize_t h3_rcv_buf(struct qcs *qcs, struct buffer *b, int fin)
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
done:
|
done:
|
||||||
|
qcs->sd->kip += ((h3s->flags & H3_SF_HAVE_CLEN) ? h3s->body_len : h3s->data_len) - prev_data_len;
|
||||||
|
|
||||||
TRACE_LEAVE(H3_EV_RX_FRAME, qcs->qcc->conn, qcs);
|
TRACE_LEAVE(H3_EV_RX_FRAME, qcs->qcc->conn, qcs);
|
||||||
return total;
|
return total;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user