mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
cancel the PTO timer when all Handshake packets are acknowledged
This commit is contained in:
parent
746358cf83
commit
61748d4d63
2 changed files with 18 additions and 0 deletions
|
@ -536,6 +536,13 @@ func (h *sentPacketHandler) setLossDetectionTimer() {
|
|||
// PTO alarm
|
||||
ptoTime, encLevel, ok := h.getPTOTimeAndSpace()
|
||||
if !ok {
|
||||
if !oldAlarm.IsZero() {
|
||||
h.alarm = time.Time{}
|
||||
h.logger.Debugf("Canceling loss detection timer. No PTO needed..")
|
||||
if h.tracer != nil {
|
||||
h.tracer.LossTimerCanceled()
|
||||
}
|
||||
}
|
||||
return
|
||||
}
|
||||
h.alarm = ptoTime
|
||||
|
|
|
@ -931,6 +931,17 @@ var _ = Describe("SentPacketHandler", func() {
|
|||
handler.ReceivedPacket(protocol.EncryptionHandshake)
|
||||
Expect(handler.GetLossDetectionTimeout()).ToNot(BeZero())
|
||||
})
|
||||
|
||||
It("cancels the loss detection alarm when all Handshake packets are acknowledged", func() {
|
||||
t := time.Now().Add(-time.Second)
|
||||
handler.ReceivedBytes(99999)
|
||||
handler.SentPacket(ackElicitingPacket(&Packet{PacketNumber: 2, SendTime: t}))
|
||||
handler.SentPacket(handshakePacket(&Packet{PacketNumber: 3, SendTime: t}))
|
||||
handler.SentPacket(handshakePacket(&Packet{PacketNumber: 4, SendTime: t}))
|
||||
Expect(handler.GetLossDetectionTimeout()).ToNot(BeZero())
|
||||
handler.ReceivedAck(&wire.AckFrame{AckRanges: []wire.AckRange{{Smallest: 3, Largest: 4}}}, protocol.EncryptionHandshake, time.Now())
|
||||
Expect(handler.GetLossDetectionTimeout()).To(BeZero())
|
||||
})
|
||||
})
|
||||
|
||||
Context("amplification limit, for the client", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue