chore: Update const type
This commit is contained in:
parent
f28ba6e62f
commit
325e44dee7
1 changed files with 5 additions and 5 deletions
|
@ -14,11 +14,11 @@ import (
|
||||||
|
|
||||||
const (
|
const (
|
||||||
// InitialMaxDatagramSize is the default maximum packet size used in QUIC for congestion window computations in bytes.
|
// InitialMaxDatagramSize is the default maximum packet size used in QUIC for congestion window computations in bytes.
|
||||||
InitialMaxDatagramSize = 1252
|
InitialMaxDatagramSize = 1252
|
||||||
InitialCongestionWindow congestion.ByteCount = 10
|
InitialPacketSizeIPv4 = 1252
|
||||||
InitialPacketSizeIPv4 = 1252
|
InitialPacketSizeIPv6 = 1232
|
||||||
InitialPacketSizeIPv6 = 1232
|
InitialCongestionWindow = 10
|
||||||
DefaultBBRMaxCongestionWindow congestion.ByteCount = 10000
|
DefaultBBRMaxCongestionWindow = 10000
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
Loading…
Reference in a new issue