]> git.ipfire.org Git - thirdparty/haproxy.git/commit
BUG/MINOR: h3: add missing break on rcv_buf() quic-interop flx04/quic-interop
authorAmaury Denoyelle <adenoyelle@haproxy.com>
Tue, 26 May 2026 12:06:23 +0000 (14:06 +0200)
committerAmaury Denoyelle <adenoyelle@haproxy.com>
Tue, 26 May 2026 12:14:24 +0000 (14:14 +0200)
commitf7130c0f3673d79b2c740fc4b0abbfb400fae1f5
tree87d881282458d8f03dc68a0e7efe2f394c8149dd
parentdfb6daca1fc398949fcba19e030748ebe8487de2
BUG/MINOR: h3: add missing break on rcv_buf()

The following patch ensures server MAX_PUSH_ID are rejected as a client.
This has been implemented by extending h3_rcv_buf().

  e4a5a64198bb084eaef2e71bfde65704a5db3931
  BUG/MINOR: h3: reject server MAX_PUSH_ID frame

Case label for MAX_PUSH_ID has been moved in the function, however the
break instruction was removed by error. Fix this by adding the missing
break statement.

This must be backported to every version the above fix is. Currently, it
is scheduled to 3.3.
src/h3.c