reset the loss detection timer when dropping a packet number space

This commit is contained in:
Marten Seemann 2019-11-23 10:40:02 +07:00
parent 92b898e811
commit e586a6cc8f
2 changed files with 24 additions and 0 deletions

View file

@ -120,6 +120,8 @@ func (h *sentPacketHandler) DropPackets(encLevel protocol.EncryptionLevel) {
default:
panic(fmt.Sprintf("Cannot drop keys for encryption level %s", encLevel))
}
h.setLossDetectionTimer()
h.ptoMode = SendNone
}
func (h *sentPacketHandler) SentPacket(packet *Packet) {