mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57: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
|
@ -545,9 +545,12 @@ func (h *sentPacketHandler) computeHandshakeTimeout() time.Duration {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *sentPacketHandler) computeRTOTimeout() time.Duration {
|
func (h *sentPacketHandler) computeRTOTimeout() time.Duration {
|
||||||
rto := h.congestion.RetransmissionDelay()
|
var rto time.Duration
|
||||||
if rto == 0 {
|
rtt := h.rttStats.SmoothedRTT()
|
||||||
|
if rtt == 0 {
|
||||||
rto = defaultRTOTimeout
|
rto = defaultRTOTimeout
|
||||||
|
} else {
|
||||||
|
rto = rtt + 4*h.rttStats.MeanDeviation()
|
||||||
}
|
}
|
||||||
rto = utils.MaxDuration(rto, minRTOTimeout)
|
rto = utils.MaxDuration(rto, minRTOTimeout)
|
||||||
// Exponential backoff
|
// Exponential backoff
|
||||||
|
|
|
@ -512,7 +512,6 @@ var _ = Describe("SentPacketHandler", func() {
|
||||||
|
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
cong = mocks.NewMockSendAlgorithm(mockCtrl)
|
cong = mocks.NewMockSendAlgorithm(mockCtrl)
|
||||||
cong.EXPECT().RetransmissionDelay().AnyTimes()
|
|
||||||
handler.congestion = cong
|
handler.congestion = cong
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -693,8 +692,10 @@ var _ = Describe("SentPacketHandler", func() {
|
||||||
|
|
||||||
It("uses RTO from rttStats", func() {
|
It("uses RTO from rttStats", func() {
|
||||||
rtt := time.Second
|
rtt := time.Second
|
||||||
expected := rtt + rtt/2*4
|
|
||||||
handler.rttStats.UpdateRTT(rtt, 0, time.Now())
|
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))
|
Expect(handler.computeRTOTimeout()).To(Equal(expected))
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -292,11 +292,3 @@ func (c *cubicSender) OnConnectionMigration() {
|
||||||
func (c *cubicSender) SetSlowStartLargeReduction(enabled bool) {
|
func (c *cubicSender) SetSlowStartLargeReduction(enabled bool) {
|
||||||
c.slowStartLargeReduction = enabled
|
c.slowStartLargeReduction = enabled
|
||||||
}
|
}
|
||||||
|
|
||||||
// RetransmissionDelay gives the time to retransmission
|
|
||||||
func (c *cubicSender) RetransmissionDelay() time.Duration {
|
|
||||||
if c.rttStats.SmoothedRTT() == 0 {
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
return c.rttStats.SmoothedRTT() + c.rttStats.MeanDeviation()*4
|
|
||||||
}
|
|
||||||
|
|
|
@ -397,33 +397,6 @@ var _ = Describe("Cubic Sender", func() {
|
||||||
Expect(sender.GetCongestionWindow()).To(Equal(defaultWindowTCP))
|
Expect(sender.GetCongestionWindow()).To(Equal(defaultWindowTCP))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("retransmission delay", func() {
|
|
||||||
const rtt = 10 * time.Millisecond
|
|
||||||
const deviation = 3 * time.Millisecond
|
|
||||||
Expect(sender.RetransmissionDelay()).To(BeZero())
|
|
||||||
|
|
||||||
rttStats.UpdateRTT(rtt, 0, clock.Now())
|
|
||||||
|
|
||||||
// Initial value is to set the median deviation to half of the initial
|
|
||||||
// rtt, the median in then multiplied by a factor of 4 and finally the
|
|
||||||
// smoothed rtt is added which is the initial rtt.
|
|
||||||
expectedDelay := rtt + rtt/2*4
|
|
||||||
Expect(sender.RetransmissionDelay()).To(Equal(expectedDelay))
|
|
||||||
|
|
||||||
for i := 0; i < 100; i++ {
|
|
||||||
// run to make sure that we converge.
|
|
||||||
rttStats.UpdateRTT(rtt+deviation, 0, clock.Now())
|
|
||||||
rttStats.UpdateRTT(rtt-deviation, 0, clock.Now())
|
|
||||||
}
|
|
||||||
expectedDelay = rtt + deviation*4
|
|
||||||
|
|
||||||
Expect(rttStats.SmoothedRTT()).To(BeNumerically("~", rtt, time.Millisecond))
|
|
||||||
Expect(sender.RetransmissionDelay()).To(BeNumerically("~", expectedDelay, time.Millisecond))
|
|
||||||
Expect(sender.BandwidthEstimate() / BytesPerSecond).To(Equal(Bandwidth(
|
|
||||||
sender.GetCongestionWindow() * protocol.ByteCount(time.Second) / protocol.ByteCount(rttStats.SmoothedRTT()),
|
|
||||||
)))
|
|
||||||
})
|
|
||||||
|
|
||||||
It("slow start max send window", func() {
|
It("slow start max send window", func() {
|
||||||
const maxCongestionWindowTCP = 50
|
const maxCongestionWindowTCP = 50
|
||||||
const numberOfAcks = 100
|
const numberOfAcks = 100
|
||||||
|
|
|
@ -17,7 +17,6 @@ type SendAlgorithm interface {
|
||||||
SetNumEmulatedConnections(n int)
|
SetNumEmulatedConnections(n int)
|
||||||
OnRetransmissionTimeout(packetsRetransmitted bool)
|
OnRetransmissionTimeout(packetsRetransmitted bool)
|
||||||
OnConnectionMigration()
|
OnConnectionMigration()
|
||||||
RetransmissionDelay() time.Duration
|
|
||||||
|
|
||||||
// Experiments
|
// Experiments
|
||||||
SetSlowStartLargeReduction(enabled bool)
|
SetSlowStartLargeReduction(enabled bool)
|
||||||
|
|
|
@ -109,18 +109,6 @@ func (mr *MockSendAlgorithmMockRecorder) OnRetransmissionTimeout(arg0 interface{
|
||||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "OnRetransmissionTimeout", reflect.TypeOf((*MockSendAlgorithm)(nil).OnRetransmissionTimeout), arg0)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "OnRetransmissionTimeout", reflect.TypeOf((*MockSendAlgorithm)(nil).OnRetransmissionTimeout), arg0)
|
||||||
}
|
}
|
||||||
|
|
||||||
// RetransmissionDelay mocks base method
|
|
||||||
func (m *MockSendAlgorithm) RetransmissionDelay() time.Duration {
|
|
||||||
ret := m.ctrl.Call(m, "RetransmissionDelay")
|
|
||||||
ret0, _ := ret[0].(time.Duration)
|
|
||||||
return ret0
|
|
||||||
}
|
|
||||||
|
|
||||||
// RetransmissionDelay indicates an expected call of RetransmissionDelay
|
|
||||||
func (mr *MockSendAlgorithmMockRecorder) RetransmissionDelay() *gomock.Call {
|
|
||||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RetransmissionDelay", reflect.TypeOf((*MockSendAlgorithm)(nil).RetransmissionDelay))
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetNumEmulatedConnections mocks base method
|
// SetNumEmulatedConnections mocks base method
|
||||||
func (m *MockSendAlgorithm) SetNumEmulatedConnections(arg0 int) {
|
func (m *MockSendAlgorithm) SetNumEmulatedConnections(arg0 int) {
|
||||||
m.ctrl.Call(m, "SetNumEmulatedConnections", arg0)
|
m.ctrl.Call(m, "SetNumEmulatedConnections", arg0)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue