Mirror von
https://github.com/PaperMC/Velocity.git
synchronisiert 2024-11-06 00:00:47 +01:00
Handle empty packets too
Dieser Commit ist enthalten in:
Ursprung
c856635ac5
Commit
f27aa8e3ba
@ -33,14 +33,17 @@ public class MinecraftVarintFrameDecoder extends ByteToMessageDecoder {
|
|||||||
if (reader.result == DecodeResult.SUCCESS) {
|
if (reader.result == DecodeResult.SUCCESS) {
|
||||||
if (reader.readVarint < 0) {
|
if (reader.readVarint < 0) {
|
||||||
throw BAD_LENGTH_CACHED;
|
throw BAD_LENGTH_CACHED;
|
||||||
}
|
} else if (reader.readVarint == 0) {
|
||||||
|
// skip over the empty packet and ignore it
|
||||||
int minimumRead = reader.bytesRead + reader.readVarint;
|
in.readerIndex(varintEnd + 1);
|
||||||
if (in.isReadable(minimumRead)) {
|
|
||||||
out.add(in.retainedSlice(varintEnd + 1, reader.readVarint));
|
|
||||||
in.skipBytes(minimumRead);
|
|
||||||
} else {
|
} else {
|
||||||
return;
|
int minimumRead = reader.bytesRead + reader.readVarint;
|
||||||
|
if (in.isReadable(minimumRead)) {
|
||||||
|
out.add(in.retainedSlice(varintEnd + 1, reader.readVarint));
|
||||||
|
in.skipBytes(minimumRead);
|
||||||
|
} else {
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else if (reader.result == DecodeResult.TOO_BIG) {
|
} else if (reader.result == DecodeResult.TOO_BIG) {
|
||||||
throw VARINT_BIG_CACHED;
|
throw VARINT_BIG_CACHED;
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren