| 4901 | class WSInit { |
| 4902 | public: |
| 4903 | WSInit() { |
| 4904 | WSADATA wsaData; |
| 4905 | if (WSAStartup(0x0002, &wsaData) == 0) is_valid_ = true; |
| 4906 | } |
| 4907 | |
| 4908 | ~WSInit() { |
| 4909 | if (is_valid_) WSACleanup(); |
nothing calls this directly
no outgoing calls
no test coverage detected