| 8645 | class WSInit { |
| 8646 | public: |
| 8647 | WSInit() { |
| 8648 | WSADATA wsaData; |
| 8649 | if (WSAStartup(0x0002, &wsaData) == 0) is_valid_ = true; |
| 8650 | } |
| 8651 | |
| 8652 | ~WSInit() { |
| 8653 | if (is_valid_) WSACleanup(); |
nothing calls this directly
no outgoing calls
no test coverage detected