Merge pull request #2228 from lucas-clemente/fix-pto-for-dropped-pn-spaces

reset the loss detection timer when dropping a packet number space
This commit is contained in:
Marten Seemann 2019-11-24 21:11:46 +07:00 committed by GitHub
commit c46c72aae8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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) {