mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
return an infinite bandwidth if the RTT is zero
This commit is contained in:
parent
fc047d7904
commit
a20c5f8db0
3 changed files with 6 additions and 2 deletions
|
@ -98,6 +98,7 @@ var _ = Describe("Cubic Sender", func() {
|
|||
})
|
||||
|
||||
It("paces", func() {
|
||||
rttStats.UpdateRTT(10*time.Millisecond, 0, time.Now())
|
||||
clock.Advance(time.Hour)
|
||||
// Fill the send window with data, then verify that we can't send.
|
||||
SendAvailableSendWindow()
|
||||
|
@ -129,7 +130,7 @@ var _ = Describe("Cubic Sender", func() {
|
|||
// At startup make sure we can send.
|
||||
Expect(sender.CanSend(0)).To(BeTrue())
|
||||
Expect(sender.TimeUntilSend(0)).To(BeZero())
|
||||
Expect(sender.BandwidthEstimate()).To(BeZero())
|
||||
Expect(sender.BandwidthEstimate()).To(Equal(infBandwidth))
|
||||
// Make sure we can send.
|
||||
Expect(sender.TimeUntilSend(0)).To(BeZero())
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue