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.
In my system TCP connect to this stack established in this way:
As you see, first packet with
SYN
flag set ignored, because in https://github.com/google/netstack/blob/master/tcpip/transport/tcp/accept.go#L423 we are see this:After 1 sec (!) OS resend packet - so time to establish TCP connect is too much.
May will be better do check
SYN
flag like this?I am try this change - connection established without resend
SYN
and waiting for 1 sec:The text was updated successfully, but these errors were encountered: