commit | 129a351a3f566fb0d025dfa7fd74e21ea7ae6a91 | [log] [tgz] |
---|---|---|
author | Frédéric Lécaille <flecaille@haproxy.com> | Thu Dec 31 10:57:04 2020 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Mon Jan 04 12:31:28 2021 +0100 |
tree | e7b0db022d8f956734acc6e296d86ca4c30b2f38 | |
parent | 50044adc608798ad47a2d340d792aff887dedeab [diff] |
BUG/MINOR: quic: Wrong STREAM frames parsing. After having re-read the RFC, we noticed there are two bugs in the STREAM frame parser. When the OFF bit (0x04) in the frame type is not set we must set the offset to 0 (it was not set at all). When the LEN bit (0x02) is not set we must extend the length of the data field to the end of the packet (it was not set at all).