| 277 | } |
| 278 | |
| 279 | static Result SetSockoptBool(Socket socket, int level, int name, bool option) |
| 280 | { |
| 281 | int on = (int)option; |
| 282 | int ret = setsockopt(socket, level, name, (char*)&on, sizeof(on)); |
| 283 | return ret >= 0 ? RESULT_OK : NATIVETORESULT(DM_SOCKET_ERRNO); |
| 284 | } |
| 285 | |
| 286 | Result SetReuseAddress(Socket socket, bool reuse) |
| 287 | { |
no outgoing calls
no test coverage detected