yamux: change default MaxStreamWindowSize to 6MB (#3474)

This commit is contained in:
fatedier
2023-06-04 19:58:55 +08:00
committed by GitHub
parent de85c9455a
commit ea08de668e
4 changed files with 4 additions and 2 deletions

View File

@@ -137,7 +137,7 @@ func (pxy *XTCPProxy) listenByKCP(listenConn *net.UDPConn, raddr *net.UDPAddr, s
fmuxCfg := fmux.DefaultConfig()
fmuxCfg.KeepAliveInterval = 10 * time.Second
fmuxCfg.MaxStreamWindowSize = 2 * 1024 * 1024
fmuxCfg.MaxStreamWindowSize = 6 * 1024 * 1024
fmuxCfg.LogOutput = io.Discard
session, err := fmux.Server(remote, fmuxCfg)
if err != nil {