remove comment that won't come into play until ordering

This commit is contained in:
Stephen Birarda 2015-08-10 10:14:50 -07:00
parent eb17ddc04f
commit d9254aa2e9

View file

@ -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);