Paper/nms-patches/NetworkManager.patch

30 lines
1.3 KiB
Diff
Raw Normal View History

2015-03-19 22:29:12 +01:00
--- /home/matt/mc-dev-private//net/minecraft/server/NetworkManager.java 2015-03-19 21:26:27.850141796 +0000
+++ src/main/java/net/minecraft/server/NetworkManager.java 2015-03-19 21:26:27.850141796 +0000
2015-02-26 23:41:06 +01:00
@@ -63,7 +63,7 @@
private final EnumProtocolDirection h;
private final Queue<NetworkManager.QueuedPacket> i = Queues.newConcurrentLinkedQueue();
private final ReentrantReadWriteLock j = new ReentrantReadWriteLock();
- private Channel k;
2015-03-19 22:29:12 +01:00
+ public Channel k; // CraftBukkit - public, PAIL: Rename channel
2015-02-26 23:41:06 +01:00
private SocketAddress l;
private PacketListener m;
private IChatBaseComponent n;
@@ -231,7 +231,7 @@
public void close(IChatBaseComponent ichatbasecomponent) {
2015-02-26 23:41:06 +01:00
if (this.k.isOpen()) {
- this.k.close().awaitUninterruptibly();
+ this.k.close(); // We can't wait as this may be called from an event loop.
this.n = ichatbasecomponent;
}
@@ -308,7 +308,7 @@
}
2015-02-26 23:41:06 +01:00
}
- protected void channelRead0(ChannelHandlerContext channelhandlercontext, Object object) throws Exception {
+ protected void channelRead0(ChannelHandlerContext channelhandlercontext, Packet object) throws Exception { // CraftBukkit - fix decompile error
this.a(channelhandlercontext, (Packet) object);
}