2017-12-18 08:35:42 +01:00
|
|
|
From b9e5686a9c938851a0a3b41e34f0558890d6623a Mon Sep 17 00:00:00 2001
|
2017-10-15 15:00:42 +02:00
|
|
|
From: Shane Freeder <theboyetronic@gmail.com>
|
|
|
|
Date: Sun, 15 Oct 2017 00:29:07 +0100
|
|
|
|
Subject: [PATCH] Increase time allowed for a keepalive reply
|
|
|
|
|
|
|
|
This patch intends to bump up the time that a client has to reply to the
|
|
|
|
server back to 30 seconds as per pre 1.12.2, which allowed clients
|
|
|
|
more than enough time to reply potentially allowing them to be less
|
|
|
|
tempermental due to lag spikes on the network thread, e.g. that caused
|
|
|
|
by plugins that are interacting with netty.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java
|
2017-12-18 08:35:42 +01:00
|
|
|
index a92bf8967..5a620f3fd 100644
|
2017-10-15 15:00:42 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
|
|
@@ -179,18 +179,25 @@ public class PlayerConnection implements PacketListenerPlayIn, ITickable {
|
|
|
|
}
|
|
|
|
|
|
|
|
this.minecraftServer.methodProfiler.a("keepAlive");
|
|
|
|
- long i = this.d();
|
|
|
|
-
|
|
|
|
- if (i - this.f >= 25000L) { // CraftBukkit
|
|
|
|
- if (this.g) {
|
|
|
|
- this.disconnect(new ChatMessage("disconnect.timeout", new Object[0]));
|
|
|
|
- } else {
|
|
|
|
- this.g = true;
|
|
|
|
- this.f = i;
|
|
|
|
- this.h = i;
|
|
|
|
- this.sendPacket(new PacketPlayOutKeepAlive(this.h));
|
|
|
|
+ // Paper Start - give clients a longer time to respond to pings as per pre 1.12.2 timings
|
|
|
|
+ // This should effectively place the keepalive handling back to "as it was" before 1.12.2
|
|
|
|
+ long currentTime = this.getCurrentMillis();
|
|
|
|
+ long elapsedTime = currentTime - this.getLastPing();
|
|
|
|
+ if (this.isPendingPing()) {
|
|
|
|
+ // We're pending a ping from the client
|
2017-10-17 22:40:53 +02:00
|
|
|
+ if (!this.processedDisconnect && elapsedTime >= 30000L) { // 30 seconds for a ping reply also, don't fire if already disconnected
|
2017-10-15 15:00:42 +02:00
|
|
|
+ PlayerConnection.LOGGER.warn("{} was kicked due to keepalive timeout!", this.player.getName()); // more info
|
|
|
|
+ this.disconnect(new ChatMessage("disconnect.timeout"));
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ if (elapsedTime >= 15000L) { // 15 seconds
|
|
|
|
+ this.setPendingPing(true);
|
|
|
|
+ this.setLastPing(currentTime);
|
|
|
|
+ this.setKeepAliveID(currentTime);
|
|
|
|
+ this.sendPacket(new PacketPlayOutKeepAlive(this.getKeepAliveID()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
this.minecraftServer.methodProfiler.b();
|
|
|
|
// CraftBukkit start
|
|
|
|
--
|
2017-12-18 08:35:42 +01:00
|
|
|
2.15.1
|
2017-10-15 15:00:42 +02:00
|
|
|
|