| 162 | } |
| 163 | |
| 164 | inline bool einProgress(int error) |
| 165 | { |
| 166 | #ifdef PLATFORM_WINDOWS |
| 167 | return error == WSAEINPROGRESS or error == WSAEWOULDBLOCK; |
| 168 | #else |
| 169 | return error == EINPROGRESS; |
| 170 | #endif |
| 171 | } |
| 172 | |
| 173 | inline bool einProgress() |
| 174 | { |
no outgoing calls
no test coverage detected