You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 20, 2020. It is now read-only.
The sndSsthresh variable, defined as int, overflows with assignment math.MaxInt64 on 32-bit systems.
This currently prevents compilation on arm/32-bit systems, which has to be worked around by defining the variable as int32 or assigning a non overflowing 32-bit value (which is probably the wrong thing to do).
Error:
go/pkg/mod/github.com/google/[email protected]/tcpip/transport/tcp/snd.go:269:16: constant 9223372036854775807 overflows int
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The
sndSsthresh
variable, defined as int, overflows with assignmentmath.MaxInt64
on 32-bit systems.This currently prevents compilation on arm/32-bit systems, which has to be worked around by defining the variable as int32 or assigning a non overflowing 32-bit value (which is probably the wrong thing to do).
Error:
go/pkg/mod/github.com/google/[email protected]/tcpip/transport/tcp/snd.go:269:16: constant 9223372036854775807 overflows int
The text was updated successfully, but these errors were encountered: