During long packet header parsing, pkt->len is updated with the Length
field value that is used to find next coalesced packets in a datagram.
For short packets it still contained the whole QUIC packet size.
This change uniforms packet length handling to always contain the total
length of the packet number and protected packet payload in pkt->len.
/* packet protection */
in.data = p;
+ in.len = pkt->len - pnl;
if (ngx_quic_long_pkt(pkt->flags)) {
- in.len = pkt->len - pnl;
badflags = clearflags & NGX_QUIC_PKT_LONG_RESERVED_BIT;
} else {
- in.len = pkt->data + pkt->len - p;
badflags = clearflags & NGX_QUIC_PKT_SHORT_RESERVED_BIT;
}
}
pkt->raw->pos = p;
+ pkt->len = end - p;
return NGX_OK;
}