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

@ -461,6 +461,7 @@ func (svr *Service) HandleListener(l net.Listener) {
fmuxCfg := fmux.DefaultConfig()
fmuxCfg.KeepAliveInterval = time.Duration(svr.cfg.TCPMuxKeepaliveInterval) * time.Second
fmuxCfg.LogOutput = io.Discard
fmuxCfg.MaxStreamWindowSize = 6 * 1024 * 1024
session, err := fmux.Server(frpConn, fmuxCfg)
if err != nil {
log.Warn("Failed to create mux connection: %v", err)