4445464748495051525354
} } private void parsePacket(byte[] data, InetAddress address, int port) { String message = new String(data).trim(); PacketTypes type = Packet.lookupPacket(message.substring(0, 2)); Packet packet = null; switch (type) { default: case INVALID: break;
4647484950515253545556