d680647107
It may only happens when there is no data to forward but a last stream frame must be sent with the FIN bit. It is not invalid, but it is useless to send an empty H3 DATA frame in that case. (cherry picked from commit 6697e87ae5e1f569dc87cf690b5ecfc049c4aab0) [ad: This patch was merely considered as an optimization. However, it is in fact mandatory as it fixes a bug on QUIC zero-copy implementation. As such, it must be backported up to 2.9. This bug can happen when iobuf data is null in done_ff, indicating that no data were transferred. Despite this, qcc_send_stream() was always called with data incorrectly incremented to iobuf offset, which is equal to HTTP/3 frame header length. This could cause garbage data emission by QUIC MUX. The most visible effect is that it provokes a BUG_ON() crash when QCS instance is released due to Tx offsets desynchronization. This bug is related to github issue #2678.] Signed-off-by: Amaury Denoyelle <adenoyelle@haproxy.com> |
||
---|---|---|
.github | ||
addons | ||
admin | ||
dev | ||
doc | ||
examples | ||
include | ||
reg-tests | ||
scripts | ||
src | ||
tests | ||
.cirrus.yml | ||
.gitattributes | ||
.gitignore | ||
.mailmap | ||
.travis.yml | ||
BRANCHES | ||
BSDmakefile | ||
CHANGELOG | ||
CONTRIBUTING | ||
INSTALL | ||
LICENSE | ||
MAINTAINERS | ||
Makefile | ||
README | ||
SUBVERS | ||
VERDATE | ||
VERSION |
The HAProxy documentation has been split into a number of different files for ease of use. Please refer to the following files depending on what you're looking for : - INSTALL for instructions on how to build and install HAProxy - BRANCHES to understand the project's life cycle and what version to use - LICENSE for the project's license - CONTRIBUTING for the process to follow to submit contributions The more detailed documentation is located into the doc/ directory : - doc/intro.txt for a quick introduction on HAProxy - doc/configuration.txt for the configuration's reference manual - doc/lua.txt for the Lua's reference manual - doc/SPOE.txt for how to use the SPOE engine - doc/network-namespaces.txt for how to use network namespaces under Linux - doc/management.txt for the management guide - doc/regression-testing.txt for how to use the regression testing suite - doc/peers.txt for the peers protocol reference - doc/coding-style.txt for how to adopt HAProxy's coding style - doc/internals for developer-specific documentation (not all up to date)