Disable Mplex by default (#9365)

Co-Authored-By: João Oliveira <hello@jxs.pt>
This commit is contained in:
João Oliveira
2026-06-03 09:05:31 +01:00
committed by GitHub
parent d7d56e6312
commit c2ac519c69
6 changed files with 52 additions and 17 deletions

View File

@@ -1443,6 +1443,10 @@ pub fn set_network_config(
config.disable_quic_support = true;
}
if parse_flag(cli_args, "enable-mplex") {
config.enable_mplex = true;
}
if parse_flag(cli_args, "disable-upnp") {
config.upnp_enabled = false;
}