From 3d67557f6fd934c386e0245246bb64c0942550a4 Mon Sep 17 00:00:00 2001 From: Chris Miles Date: Sat, 17 May 2025 23:02:33 -0500 Subject: [PATCH] Update daybreak_connection.cpp --- common/net/daybreak_connection.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/common/net/daybreak_connection.cpp b/common/net/daybreak_connection.cpp index b5b2ea884..6c69bdf61 100644 --- a/common/net/daybreak_connection.cpp +++ b/common/net/daybreak_connection.cpp @@ -1155,6 +1155,12 @@ void EQ::Net::DaybreakConnection::ProcessResend(int stream) ); } + LogNetClient("Resending packets for stream [{}] packet count [{}] total packet size [{}]", + stream, + s->sent_packets.size(), + m_resend_bytes_sent + ); + for (auto &e: s->sent_packets) { // if (m_resend_packets_sent >= MAX_CLIENT_RECV_PACKETS_PER_WINDOW || // m_resend_bytes_sent >= MAX_CLIENT_RECV_BYTES_PER_WINDOW) {