| 38 | } |
| 39 | |
| 40 | void cppnet::SetReusePort(const uint64_t& sock) { |
| 41 | int opt = 1; |
| 42 | int ret = setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (const char*)&opt, sizeof(opt)); |
| 43 | } |
| 44 | |
| 45 | bool InitScoket() { |
| 46 | static WSADATA __wsa_data; |
nothing calls this directly
no outgoing calls
no test coverage detected