2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Andrew Steinborn <git@steinborn.me>
|
|
|
|
Date: Sun, 5 Jul 2020 22:38:18 -0400
|
|
|
|
Subject: [PATCH] Optimize NetworkManager Exception Handling
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/network/Varint21FrameDecoder.java b/src/main/java/net/minecraft/network/Varint21FrameDecoder.java
|
2024-04-12 21:14:06 +02:00
|
|
|
index 421dd76816063d56ea80339b77531729edd6aa55..1523d69b7b332f0085f40310a94d406da6513edc 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/network/Varint21FrameDecoder.java
|
|
|
|
+++ b/src/main/java/net/minecraft/network/Varint21FrameDecoder.java
|
2023-09-23 00:33:14 +02:00
|
|
|
@@ -39,6 +39,12 @@ public class Varint21FrameDecoder extends ByteToMessageDecoder {
|
|
|
|
}
|
2021-06-11 14:02:28 +02:00
|
|
|
|
2021-06-14 11:46:59 +02:00
|
|
|
protected void decode(ChannelHandlerContext channelHandlerContext, ByteBuf byteBuf, List<Object> list) {
|
2024-01-21 19:37:09 +01:00
|
|
|
+ // Paper start - Perf: Optimize exception handling; if channel is not active just discard the packet
|
2021-06-14 11:46:59 +02:00
|
|
|
+ if (!channelHandlerContext.channel().isActive()) {
|
|
|
|
+ byteBuf.skipBytes(byteBuf.readableBytes());
|
2021-06-11 14:02:28 +02:00
|
|
|
+ return;
|
|
|
|
+ }
|
2024-01-21 19:37:09 +01:00
|
|
|
+ // Paper end - Perf: Optimize exception handling
|
2021-06-14 11:46:59 +02:00
|
|
|
byteBuf.markReaderIndex();
|
2023-09-23 00:33:14 +02:00
|
|
|
this.helperBuf.clear();
|
|
|
|
if (!copyVarint(byteBuf, this.helperBuf)) {
|