Waterfall/BungeeCord-Patches/0015-Enable-TCP_NODELAY.patch

23 lines
948 B
Diff
Raw Normal View History

From bb2127c0b92d7b97160e81045a7dc3ed80cd3814 Mon Sep 17 00:00:00 2001
From: Harry <me@harry5573.uk>
2018-05-28 22:53:01 +02:00
Date: Sun, 24 Jan 2016 15:13:29 -0700
Subject: [PATCH] Enable TCP_NODELAY.
This is enabled by default on CraftBukkit/Spigot >= 1.8 and may help with network performance.
diff --git a/proxy/src/main/java/net/md_5/bungee/netty/PipelineUtils.java b/proxy/src/main/java/net/md_5/bungee/netty/PipelineUtils.java
2018-09-30 20:17:21 +02:00
index 09486b4a..41330ec2 100644
--- a/proxy/src/main/java/net/md_5/bungee/netty/PipelineUtils.java
+++ b/proxy/src/main/java/net/md_5/bungee/netty/PipelineUtils.java
2018-09-30 20:17:21 +02:00
@@ -134,6 +134,7 @@ public class PipelineUtils
{
// IP_TOS is not supported (Windows XP / Windows Server 2003)
}
+ ch.config().setOption( ChannelOption.TCP_NODELAY, true );
ch.config().setAllocator( PooledByteBufAllocator.DEFAULT );
2017-08-18 11:36:42 +02:00
ch.config().setWriteBufferWaterMark( MARK );
--
2.19.1