mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
move calculation of RTO delay to the sent packet handler
This commit is contained in:
parent
ef286afa3c
commit
2b9b949855
6 changed files with 8 additions and 52 deletions
|
@ -512,7 +512,6 @@ var _ = Describe("SentPacketHandler", func() {
|
|||
|
||||
BeforeEach(func() {
|
||||
cong = mocks.NewMockSendAlgorithm(mockCtrl)
|
||||
cong.EXPECT().RetransmissionDelay().AnyTimes()
|
||||
handler.congestion = cong
|
||||
})
|
||||
|
||||
|
@ -693,8 +692,10 @@ var _ = Describe("SentPacketHandler", func() {
|
|||
|
||||
It("uses RTO from rttStats", func() {
|
||||
rtt := time.Second
|
||||
expected := rtt + rtt/2*4
|
||||
handler.rttStats.UpdateRTT(rtt, 0, time.Now())
|
||||
Expect(handler.rttStats.SmoothedRTT()).To(Equal(rtt))
|
||||
Expect(handler.rttStats.MeanDeviation()).To(Equal(rtt / 2))
|
||||
expected := rtt + rtt/2*4
|
||||
Expect(handler.computeRTOTimeout()).To(Equal(expected))
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue