to be merged: arg_mreqs in relation with max-concurrent streams (h2 and h3)

This commit is contained in:
Frederic Lecaille 2026-05-20 18:44:48 +02:00
parent adb57b52b5
commit 27614e16d5

View file

@ -531,6 +531,10 @@ void haproxy_init_args(int argc, char **argv)
hbuf_appendf(&buf, "%.*s", (int)gbuf.data, gbuf.area);
if (arg_nbthrds != -1)
hbuf_appendf(&buf, "\tnbthread %d\n", arg_nbthrds);
if (arg_mreqs)
hbuf_appendf(&buf,
"\ttune.h2.be.max-concurrent-streams %d\n"
"\ttune.quic.be.stream.max-concurrent %d\n", arg_mreqs, arg_mreqs);
/* "traces" section */
if (hld_debug) {
hbuf_appendf(&buf, "%s", hld_cfg_traces_str);