2018-12-27 00:40:37 +01:00
|
|
|
From d913cae4e3057567b2ddf147342de2ae3cdca2a1 Mon Sep 17 00:00:00 2001
|
2016-05-28 18:34:39 +02:00
|
|
|
From: Harry <me@harry5573.uk>
|
2018-05-28 22:53:01 +02:00
|
|
|
Date: Sun, 24 Jan 2016 15:13:29 -0700
|
2016-05-28 18:34:39 +02:00
|
|
|
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-12-27 00:40:37 +01:00
|
|
|
index a2af0a36..ba274eea 100644
|
2016-05-28 18:34:39 +02:00
|
|
|
--- 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-12-27 00:40:37 +01:00
|
|
|
@@ -141,6 +141,7 @@ public class PipelineUtils
|
2016-05-28 18:34:39 +02:00
|
|
|
{
|
|
|
|
// 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 );
|
2016-05-28 18:34:39 +02:00
|
|
|
|
|
|
|
--
|
2018-12-27 00:40:37 +01:00
|
|
|
2.20.1
|
2016-05-28 18:34:39 +02:00
|
|
|
|