Merge pull request #3107 from lucas-clemente/fix-cubic-initialization

initialize the congestion controller with the actual max datagram size
This commit is contained in:
Marten Seemann 2021-04-02 17:35:13 +07:00 committed by GitHub
commit f60306c4bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 50 additions and 13 deletions

View file

@ -101,6 +101,7 @@ var (
func newSentPacketHandler(
initialPN protocol.PacketNumber,
initialMaxDatagramSize protocol.ByteCount,
rttStats *utils.RTTStats,
pers protocol.Perspective,
tracer logging.ConnectionTracer,
@ -109,6 +110,7 @@ func newSentPacketHandler(
congestion := congestion.NewCubicSender(
congestion.DefaultClock{},
rttStats,
initialMaxDatagramSize,
true, // use Reno
tracer,
)