| 98 | #endif |
| 99 | |
| 100 | bool static inline IsSelectableSocket(const SOCKET& s) { |
| 101 | #if defined(USE_POLL) || defined(WIN32) |
| 102 | return true; |
| 103 | #else |
| 104 | return (s < FD_SETSIZE); |
| 105 | #endif |
| 106 | } |
| 107 | |
| 108 | // MSG_NOSIGNAL is not available on some platforms, if it doesn't exist define it as 0 |
| 109 | #if !defined(MSG_NOSIGNAL) |
no outgoing calls
no test coverage detected