mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Update to latest PacketLib change
This commit is contained in:
parent
42aca7f00c
commit
64799b11b4
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ public final class LocalSession extends TcpSession {
|
||||||
ChannelPipeline pipeline = channel.pipeline();
|
ChannelPipeline pipeline = channel.pipeline();
|
||||||
pipeline.addLast("encryption", new TcpPacketEncryptor(LocalSession.this));
|
pipeline.addLast("encryption", new TcpPacketEncryptor(LocalSession.this));
|
||||||
pipeline.addLast("sizer", new TcpPacketSizer(LocalSession.this));
|
pipeline.addLast("sizer", new TcpPacketSizer(LocalSession.this));
|
||||||
pipeline.addLast("codec", new TcpPacketCodec(LocalSession.this));
|
pipeline.addLast("codec", new TcpPacketCodec(LocalSession.this, true));
|
||||||
pipeline.addLast("manager", LocalSession.this);
|
pipeline.addLast("manager", LocalSession.this);
|
||||||
|
|
||||||
addHAProxySupport(pipeline);
|
addHAProxySupport(pipeline);
|
||||||
|
|
Loading…
Reference in a new issue