mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
set max tracked packets to max cwnd * 2
This commit is contained in:
parent
3b1231db81
commit
8c6eb61850
6 changed files with 9 additions and 12 deletions
|
@ -83,7 +83,7 @@ var _ = Describe("receivedPacketHandler", func() {
|
|||
})
|
||||
|
||||
It("doesn't store more than MaxTrackedReceivedPackets packets", func() {
|
||||
for i := uint32(0); i < protocol.MaxTrackedReceivedPackets; i++ {
|
||||
for i := protocol.PacketNumber(0); i < protocol.MaxTrackedReceivedPackets; i++ {
|
||||
packetNumber := protocol.PacketNumber(1 + 2*i)
|
||||
err := handler.ReceivedPacket(packetNumber)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue