mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
remove PRR code
This commit is contained in:
parent
4ae1a13503
commit
19f06ad3a9
4 changed files with 1 additions and 199 deletions
|
@ -264,18 +264,6 @@ var _ = Describe("Cubic Sender", func() {
|
|||
Expect(sender.GetCongestionWindow()).To(Equal(expectedSendWindow))
|
||||
})
|
||||
|
||||
It("no PRR when less than one packet in flight", func() {
|
||||
SendAvailableSendWindow()
|
||||
LoseNPackets(int(initialCongestionWindowPackets) - 1)
|
||||
AckNPackets(1)
|
||||
// PRR will allow 2 packets for every ack during recovery.
|
||||
Expect(SendAvailableSendWindow()).To(Equal(2))
|
||||
// Simulate abandoning all packets by supplying a bytes_in_flight of 0.
|
||||
// PRR should now allow a packet to be sent, even though prr's state
|
||||
// variables believe it has sent enough packets.
|
||||
Expect(sender.CanSend(0)).To(BeTrue())
|
||||
})
|
||||
|
||||
It("slow start packet loss PRR", func() {
|
||||
sender.SetNumEmulatedConnections(1)
|
||||
// Test based on the first example in RFC6937.
|
||||
|
@ -555,7 +543,6 @@ var _ = Describe("Cubic Sender", func() {
|
|||
|
||||
It("no PRR", func() {
|
||||
sender.SetNumEmulatedConnections(1)
|
||||
sender.noPRR = true
|
||||
|
||||
SendAvailableSendWindow()
|
||||
LoseNPackets(9)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue