diff --git a/internal/protocol/params.go b/internal/protocol/params.go index 838010f92..6bdfd0d33 100644 --- a/internal/protocol/params.go +++ b/internal/protocol/params.go @@ -132,8 +132,8 @@ const MaxNumAckRanges = 500 // 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. -// Example: For a packet pacing delay of 20 microseconds, we would send 5 packets at once, wait for 100 microseconds, and so forth. -const MinPacingDelay time.Duration = 100 * time.Microsecond +// Example: For a packet pacing delay of 200μs, we would send 5 packets at once, wait for 1ms, and so forth. +const MinPacingDelay = time.Millisecond // DefaultConnectionIDLength is the connection ID length that is used for multiplexed connections // if no other value is configured.