| 142 | } |
| 143 | |
| 144 | error nonblocking(socket x, bool new_value) { |
| 145 | u_long mode = new_value ? 1 : 0; |
| 146 | CAF_NET_SYSCALL("ioctlsocket", res, !=, 0, ioctlsocket(x.id, FIONBIO, &mode)); |
| 147 | return none; |
| 148 | } |
| 149 | |
| 150 | error receive_timeout(socket x, timespan timeout) { |
| 151 | auto msec = static_cast<DWORD>(timeout.count() / 1'000'000); |