delete retransmitted packets from QUIC 34 SentPacketHandler packetHistory

fixes #188
This commit is contained in:
Marten Seemann 2016-06-24 16:41:04 +07:00
parent 38c0c3d0aa
commit fe1fb7a5f4
4 changed files with 31 additions and 18 deletions

View file

@ -106,8 +106,6 @@ func (h *sentPacketHandler) queuePacketForRetransmission(packet *Packet) {
h.bytesInFlight -= packet.Length
h.retransmissionQueue = append(h.retransmissionQueue, packet)
packet.Retransmitted = true
// TODO: delete from packetHistory once we drop support for version smaller than QUIC 33
}
func (h *sentPacketHandler) SentPacket(packet *Packet) error {