mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
reset the PTO count when receiving a Retry
This commit is contained in:
parent
dd27bce3fb
commit
d1d4e5ce02
3 changed files with 14 additions and 3 deletions
|
@ -995,7 +995,7 @@ var _ = Describe("SentPacketHandler", func() {
|
|||
perspective = protocol.PerspectiveClient
|
||||
})
|
||||
|
||||
It("queues outstanding packets for retransmission and cancels alarms", func() {
|
||||
It("queues outstanding packets for retransmission, cancels alarms and resets PTO count", func() {
|
||||
handler.SentPacket(initialPacket(&Packet{PacketNumber: 42}))
|
||||
Expect(handler.GetLossDetectionTimeout()).ToNot(BeZero())
|
||||
Expect(handler.bytesInFlight).ToNot(BeZero())
|
||||
|
@ -1006,6 +1006,7 @@ var _ = Describe("SentPacketHandler", func() {
|
|||
Expect(handler.bytesInFlight).To(BeZero())
|
||||
Expect(handler.GetLossDetectionTimeout()).To(BeZero())
|
||||
Expect(handler.SendMode()).To(Equal(SendAny))
|
||||
Expect(handler.ptoCount).To(BeZero())
|
||||
})
|
||||
|
||||
It("queues outstanding frames for retransmission and cancels alarms", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue