| 221 | } |
| 222 | |
| 223 | int close(int fd) FL_NOEXCEPT { |
| 224 | SOCKET sock = static_cast<SOCKET>(fd); |
| 225 | int result = ::closesocket(sock); |
| 226 | return (result == SOCKET_ERROR) ? -1 : 0; |
| 227 | } |
| 228 | |
| 229 | // Socket Options |
| 230 | int setsockopt(int sockfd, int level, int optname, const void *optval, socklen_t optlen) FL_NOEXCEPT { |
no outgoing calls
no test coverage detected