Browse Source

Set default tun mtu to 9000 like clash

IDK why, maybe faster in a local speed test?
世界 3 years ago
parent
commit
a15b13978f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      inbound/tun.go

+ 1 - 1
inbound/tun.go

@@ -44,7 +44,7 @@ func NewTun(ctx context.Context, router adapter.Router, logger log.ContextLogger
 	}
 	tunMTU := options.MTU
 	if tunMTU == 0 {
-		tunMTU = 1500
+		tunMTU = 9000
 	}
 	var udpTimeout int64
 	if options.UDPTimeout != 0 {