mirror of
https://github.com/PaperMC/Waterfall.git
synced 2024-11-06 02:31:46 +01:00
56 lines
2.2 KiB
Diff
56 lines
2.2 KiB
Diff
From 69ec2dd1495c968ba7e9e4bb71138c89c866252f Mon Sep 17 00:00:00 2001
|
|
From: LinsaFTW <25271111+linsaftw@users.noreply.github.com>
|
|
Date: Thu, 10 Jun 2021 11:30:19 -0300
|
|
Subject: [PATCH] Apply packet limits
|
|
|
|
|
|
diff --git a/protocol/src/main/java/net/md_5/bungee/protocol/packet/EncryptionRequest.java b/protocol/src/main/java/net/md_5/bungee/protocol/packet/EncryptionRequest.java
|
|
index 86182cdd..b28f4081 100644
|
|
--- a/protocol/src/main/java/net/md_5/bungee/protocol/packet/EncryptionRequest.java
|
|
+++ b/protocol/src/main/java/net/md_5/bungee/protocol/packet/EncryptionRequest.java
|
|
@@ -61,4 +61,14 @@ public class EncryptionRequest extends DefinedPacket
|
|
{
|
|
handler.handle( this );
|
|
}
|
|
+
|
|
+ @Override
|
|
+ public int expectedMaxLength(ByteBuf buf, ProtocolConstants.Direction direction, int protocolVersion) {
|
|
+ return 20 + 256 + 256; // FlameCord - Apply packet limits
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public int expectedMinLength(ByteBuf buf, ProtocolConstants.Direction direction, int protocolVersion) {
|
|
+ return 20 + 1 + 1; // FlameCord - Apply packet limits
|
|
+ }
|
|
}
|
|
diff --git a/protocol/src/main/java/net/md_5/bungee/protocol/packet/Handshake.java b/protocol/src/main/java/net/md_5/bungee/protocol/packet/Handshake.java
|
|
index 7dbbfd3c..b7842055 100644
|
|
--- a/protocol/src/main/java/net/md_5/bungee/protocol/packet/Handshake.java
|
|
+++ b/protocol/src/main/java/net/md_5/bungee/protocol/packet/Handshake.java
|
|
@@ -7,6 +7,7 @@ import lombok.EqualsAndHashCode;
|
|
import lombok.NoArgsConstructor;
|
|
import net.md_5.bungee.protocol.AbstractPacketHandler;
|
|
import net.md_5.bungee.protocol.DefinedPacket;
|
|
+import net.md_5.bungee.protocol.ProtocolConstants;
|
|
|
|
@Data
|
|
@NoArgsConstructor
|
|
@@ -43,4 +44,14 @@ public class Handshake extends DefinedPacket
|
|
{
|
|
handler.handle( this );
|
|
}
|
|
+
|
|
+ @Override
|
|
+ public int expectedMaxLength(ByteBuf buf, ProtocolConstants.Direction direction, int protocolVersion) {
|
|
+ return 1036 + 256; // FlameCord - Apply packet limits
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public int expectedMinLength(ByteBuf buf, ProtocolConstants.Direction direction, int protocolVersion) {
|
|
+ return 5; // FlameCord - Apply packet limits
|
|
+ }
|
|
}
|
|
--
|
|
2.32.0
|
|
|