mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
use the max_ack_delay when computing the PTO duration
This commit is contained in:
parent
537737935c
commit
4e6df9041d
2 changed files with 2 additions and 3 deletions
|
@ -619,7 +619,7 @@ var _ = Describe("SentPacketHandler", func() {
|
|||
It("uses the granularity for short RTTs", func() {
|
||||
rtt := time.Microsecond
|
||||
updateRTT(rtt)
|
||||
Expect(handler.computePTOTimeout()).To(Equal(protocol.TimerGranularity))
|
||||
Expect(handler.computePTOTimeout()).To(Equal(rtt + protocol.TimerGranularity))
|
||||
})
|
||||
|
||||
It("implements exponential backoff", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue