mirror of
https://github.com/haproxy/haproxy.git
synced 2026-05-25 10:42:14 -04:00
to be merged: arg_mreqs in relation with max-concurrent streams (h2 and h3)
This commit is contained in:
parent
adb57b52b5
commit
27614e16d5
1 changed files with 4 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue