proxy progress? that should be a positive change

This commit is contained in:
rusefi 2020-07-26 23:34:37 -04:00
parent 3112f4d153
commit a7f6fefc2f
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@ public class BinaryProtocolServer implements BinaryProtocolCommands {
int fromPacket = IoHelper.getCrc32(packet);
if (crc != fromPacket)
throw new IllegalStateException("CRC mismatch crc=" + Integer.toString(crc, 16) + " vs packet=" + Integer.toString(fromPacket, 16) + " len=" + packet.length + " data: " + IoStream.printHexBinary(packet));
// todo?! in.onPacketArrived();
in.onPacketArrived();
return new Packet(packet, crc);
}