BUG/MINOR: h3: fix incomplete POST requests
Always set HTX flag HTX_SL_F_XFER_LEN for http/3. This is correct
becuase the size of H3 requests is always known thanks to the protocol
framing.
This may fix occurences of incomplete POST requests when the client side
of the connection has been closed before.
diff --git a/src/h3.c b/src/h3.c
index 0fce7b0..9f1e09b 100644
--- a/src/h3.c
+++ b/src/h3.c
@@ -141,6 +141,7 @@
}
flags |= HTX_SL_F_VER_11;
+ flags |= HTX_SL_F_XFER_LEN;
sl = htx_add_stline(htx, HTX_BLK_REQ_SL, flags, meth, path, ist("HTTP/3.0"));
if (!sl)