summaryrefslogtreecommitdiff
path: root/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--client.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/client.cpp b/client.cpp
index b4f76c5..9cbb889 100644
--- a/client.cpp
+++ b/client.cpp
@@ -166,12 +166,13 @@ void Client::handlePacket(Packet::Type type, char *data, int size) {
if (!isNullSessionKey(reqKey)) {
printf("[fd=%d] Trying to resume session...", sock);
- printf("(last they received = %d, last we sent = %d)\n", lastReceivedByClient, nextPacketID - 1);
+ printf("(last they received = %d)\n", lastReceivedByClient);
Client *other = netCore->findClientWithSessionKey(reqKey);
printf("[fd=%d] Got client %p\n", sock, other);
if (other && other->authState == AS_AUTHED) {
+ printf("Valid: last packet we sent = %d\n", other->nextPacketID - 1);
// Yep, we can go!
other->resumeSession(this, lastReceivedByClient);
return;