return an infinite bandwidth if the RTT is zero

This commit is contained in:
Marten Seemann 2020-06-28 14:55:47 +07:00
parent fc047d7904
commit a20c5f8db0
3 changed files with 6 additions and 2 deletions

View file

@ -1,6 +1,7 @@
package congestion package congestion
import ( import (
"math"
"time" "time"
"github.com/lucas-clemente/quic-go/internal/protocol" "github.com/lucas-clemente/quic-go/internal/protocol"
@ -9,6 +10,8 @@ import (
// Bandwidth of a connection // Bandwidth of a connection
type Bandwidth uint64 type Bandwidth uint64
const infBandwidth Bandwidth = math.MaxUint64
const ( const (
// BitsPerSecond is 1 bit per second // BitsPerSecond is 1 bit per second
BitsPerSecond Bandwidth = 1 BitsPerSecond Bandwidth = 1

View file

@ -276,7 +276,7 @@ func (c *cubicSender) BandwidthEstimate() Bandwidth {
srtt := c.rttStats.SmoothedRTT() srtt := c.rttStats.SmoothedRTT()
if srtt == 0 { if srtt == 0 {
// If we haven't measured an rtt, the bandwidth estimate is unknown. // If we haven't measured an rtt, the bandwidth estimate is unknown.
return 0 return infBandwidth
} }
return BandwidthFromDelta(c.GetCongestionWindow(), srtt) return BandwidthFromDelta(c.GetCongestionWindow(), srtt)
} }

View file

@ -98,6 +98,7 @@ var _ = Describe("Cubic Sender", func() {
}) })
It("paces", func() { It("paces", func() {
rttStats.UpdateRTT(10*time.Millisecond, 0, time.Now())
clock.Advance(time.Hour) clock.Advance(time.Hour)
// Fill the send window with data, then verify that we can't send. // Fill the send window with data, then verify that we can't send.
SendAvailableSendWindow() SendAvailableSendWindow()
@ -129,7 +130,7 @@ var _ = Describe("Cubic Sender", func() {
// At startup make sure we can send. // At startup make sure we can send.
Expect(sender.CanSend(0)).To(BeTrue()) Expect(sender.CanSend(0)).To(BeTrue())
Expect(sender.TimeUntilSend(0)).To(BeZero()) Expect(sender.TimeUntilSend(0)).To(BeZero())
Expect(sender.BandwidthEstimate()).To(BeZero()) Expect(sender.BandwidthEstimate()).To(Equal(infBandwidth))
// Make sure we can send. // Make sure we can send.
Expect(sender.TimeUntilSend(0)).To(BeZero()) Expect(sender.TimeUntilSend(0)).To(BeZero())