Lower kcp interval to 20

This commit is contained in:
Melledy 2022-07-21 16:23:59 -07:00
parent a07b3f21e6
commit 62e54010ad
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ public final class GameServer extends KcpServer {
public GameServer(InetSocketAddress address) {
ChannelConfig channelConfig = new ChannelConfig();
channelConfig.nodelay(true, 40, 2, true);
channelConfig.nodelay(true, 20, 2, true);
channelConfig.setMtu(1400);
channelConfig.setSndwnd(256);
channelConfig.setRcvwnd(256);