chore: Update const type

This commit is contained in:
gVisor bot 2023-01-17 12:33:15 +08:00
parent f28ba6e62f
commit 325e44dee7

View file

@ -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 (