mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
remove variable type from congestion server parameters
This commit is contained in:
parent
a8f45d7959
commit
2e7fb25672
2 changed files with 3 additions and 3 deletions
|
@ -3,10 +3,10 @@ package protocol
|
|||
import "time"
|
||||
|
||||
// DefaultMaxCongestionWindow is the default for the max congestion window
|
||||
const DefaultMaxCongestionWindow PacketNumber = 1000
|
||||
const DefaultMaxCongestionWindow = 1000
|
||||
|
||||
// InitialCongestionWindow is the initial congestion window in QUIC packets
|
||||
const InitialCongestionWindow PacketNumber = 32
|
||||
const InitialCongestionWindow = 32
|
||||
|
||||
// MaxUndecryptablePackets limits the number of undecryptable packets that a
|
||||
// session queues for later until it sends a public reset.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue