From da4e436c2b721d261a51e765aca844c9b85883dd Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Wed, 18 Mar 2020 20:54:16 +0100 Subject: Adapt for ARM64 --- pkg/tcpip/transport/tcp/snd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/tcpip/transport/tcp/snd.go b/pkg/tcpip/transport/tcp/snd.go index b74b61e7d..f77f73eb3 100644 --- a/pkg/tcpip/transport/tcp/snd.go +++ b/pkg/tcpip/transport/tcp/snd.go @@ -273,7 +273,7 @@ func newSender(ep *endpoint, iss, irs seqnum.Value, sndWnd seqnum.Size, mss uint // their initial values. func (s *sender) initCongestionControl(congestionControlName tcpip.CongestionControlOption) congestionControl { s.sndCwnd = InitialCwnd - s.sndSsthresh = math.MaxInt64 + s.sndSsthresh = math.MaxInt32 switch congestionControlName { case ccCubic: -- cgit v1.2.3