mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
reduce the maximum number of ACK ranges
This commit is contained in:
parent
69158cf5f1
commit
33c7588b18
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ const MaxAckFrameSize ByteCount = 1000
|
|||
// MaxNumAckRanges is the maximum number of ACK ranges that we send in an ACK frame.
|
||||
// It also serves as a limit for the packet history.
|
||||
// If at any point we keep track of more ranges, old ranges are discarded.
|
||||
const MaxNumAckRanges = 500
|
||||
const MaxNumAckRanges = 32
|
||||
|
||||
// MinPacingDelay is the minimum duration that is used for packet pacing
|
||||
// If the packet packing frequency is higher, multiple packets might be sent at once.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue