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
Add fallback implementations for `getaddrinfo` and `freeaddrinfo`
These fall back to wship6.dll (NT4/2000) if available, or are impl'd via a translation
of the header-only wspiapi.h implementations (IPv4 only, all Windows versions with
WS2 support).
Stub `SetHandleInformation`/`Socket::set_no_inherit`
SetHandleInformation is exported by kernel32 on Win9X/ME, but is just
stubbed, returning `ERROR_CALL_NOT_IMPLEMENTED`. Sockets are
non-inheritable on these systems anyways, so we "fail successfully".
https://www.betaarchive.com/wiki/index.php/Microsoft_KB_Archive/150523#MORE_INFORMATION
SetHandleInformation is also unavailable on WinNT before 3.51. This is
fine, however, because MS did not supply WinSock 2 for Windows NT before
4.0, so this function is not called.
0 commit comments