diff --git a/libraries/networking/src/udt/Connection.cpp b/libraries/networking/src/udt/Connection.cpp index 4de12d28b0..af8a0e1f75 100644 --- a/libraries/networking/src/udt/Connection.cpp +++ b/libraries/networking/src/udt/Connection.cpp @@ -432,8 +432,8 @@ void Connection::processTimeoutNAK(std::unique_ptr controlPacket) // Override SendQueue's LossList with the timeout NAK list _sendQueue->overrideNAKListFromPacket(*controlPacket); - // TODO: tell the congestion control object that there was loss - // _congestionControl->onLoss(); + // we don't tell the congestion control object there was loss here - this matches UDTs implementation + // a possible improvement would be to tell it which new loss this timeout packet told us about ++_totalReceivedTimeoutNAKs; }