Merge pull request #28 from birarda/atp

fix for return of processable packets
This commit is contained in:
Stephen Birarda 2015-08-27 17:10:41 -07:00
commit 0c5e97a5c6

View file

@ -394,7 +394,7 @@ bool Connection::processReceivedSequenceNumber(SequenceNumber sequenceNumber, in
_stats.recordReceivedPackets(payloadSize, packetSize);
}
return wasDuplicate;
return !wasDuplicate;
}
void Connection::processControl(std::unique_ptr<ControlPacket> controlPacket) {