| 92 | size_t strnlen_int(const char* start, size_t max_len); |
| 93 | |
| 94 | bool static inline IsSelectableSocket(SOCKET s) |
| 95 | { |
| 96 | #ifdef WIN32 |
| 97 | return true; |
| 98 | #else |
| 99 | return (s < FD_SETSIZE); |
| 100 | #endif |
| 101 | } |
| 102 | |
| 103 | #endif // BITCOIN_COMPAT_H |
no outgoing calls
no test coverage detected