* room server keep_alive ACKs now have unsynced_count appended.

This commit is contained in:
Scott Powell 2025-04-17 15:46:51 +10:00
parent b17196acb4
commit 7b1582a0b9

View file

@ -583,6 +583,7 @@ protected:
auto reply = createAck(ack_hash);
if (reply) {
reply->payload[reply->payload_len++] = getUnsyncedCount(client); // NEW: add unsynced counter to end of ACK packet
sendDirect(reply, client->out_path, client->out_path_len);
}
}