mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 21:57:36 +03:00
delete retransmitted packets from QUIC 34 SentPacketHandler packetHistory
fixes #188
This commit is contained in:
parent
38c0c3d0aa
commit
fe1fb7a5f4
4 changed files with 31 additions and 18 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue