From d9254aa2e98f7cff8ccdb03383096ec072793d76 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Mon, 10 Aug 2015 10:14:50 -0700 Subject: [PATCH] remove comment that won't come into play until ordering --- libraries/networking/src/udt/Connection.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/libraries/networking/src/udt/Connection.cpp b/libraries/networking/src/udt/Connection.cpp index ba3ae29e98..149b8a478e 100644 --- a/libraries/networking/src/udt/Connection.cpp +++ b/libraries/networking/src/udt/Connection.cpp @@ -130,9 +130,6 @@ void Connection::sendACK(bool wasCausedBySyncTimeout) { // update the last sent ACK _lastSentACK = nextACKNumber; - // remove the ACKed packets from the receive queue - // TODO? - // setup the ACK packet, make it static so we can re-use it static const int ACK_PACKET_PAYLOAD_BYTES = sizeof(_lastSentACK) + sizeof(_currentACKSubSequenceNumber) + sizeof(_rtt) + sizeof(int32_t) + sizeof(int32_t) + sizeof(int32_t);