Mikhail I. Izmestev

Results 1 issues of Mikhail I. Izmestev

granian use shared socket. hyper make it nonblocking socket. internals of WS2_32 accept in pseudo code: ``` def accept(socket): [...] EnterCriticalSection(socket.cs) if socket.non_blocking: select(...) if not FD_ISSET(...): return error(WOULDBLOCK) blocking_accept()...