Hi all,
With the current implementation of mio's TcpListener, the socket is inherited by any child processes. The std library's TcpListener uses WSASocketW which does not have this issue due to the explicit WSA_FLAG_NO_HANDLE_INHERIT.
Would it be feasible to use WsaSocketW in mio?