From fccdb1c558ec7643ab44877e568ca3d2e2226cc6 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Sun, 19 May 2019 15:57:20 +0200 Subject: [PATCH] use Reno instead of Cubic --- internal/ackhandler/sent_packet_handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ackhandler/sent_packet_handler.go b/internal/ackhandler/sent_packet_handler.go index c586495e4..ecfb029d5 100644 --- a/internal/ackhandler/sent_packet_handler.go +++ b/internal/ackhandler/sent_packet_handler.go @@ -88,7 +88,7 @@ func NewSentPacketHandler( congestion := congestion.NewCubicSender( congestion.DefaultClock{}, rttStats, - false, /* don't use reno since chromium doesn't (why?) */ + true, // use Reno protocol.InitialCongestionWindow, protocol.DefaultMaxCongestionWindow, )