Fix resync request packet to hopefully keep working longer

This commit is contained in:
Cameron Gutman 2014-01-10 00:00:09 -06:00
parent cc30752eb7
commit 96e5513cdb

View File

@ -239,7 +239,7 @@ public class ControlStream implements ConnectionStatusListener {
ByteBuffer conf = ByteBuffer.wrap(new byte[PPAYLEN_RESYNC]).order(ByteOrder.LITTLE_ENDIAN);
conf.putLong(0);
conf.putLong(0xFFFF);
conf.putLong(0xFFFFF);
sendAndGetReply(new NvCtlPacket(PTYPE_RESYNC, PPAYLEN_RESYNC, conf.array()));
}