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
Fix an inconsitency in Linux version of TcpListener::accept
If TcpListener is in non-blocking mode then accepted streams inherit
this property on all platforms except Linux, where accept4 is used
instead of accept.
This fix checks if a listener is in non-blocking mode and pass the
corresponding flag to accept4.
Fixes#67027
0 commit comments