| 5446 | class WSInit { |
| 5447 | public: |
| 5448 | WSInit() { |
| 5449 | WSADATA wsaData; |
| 5450 | if (WSAStartup(0x0002, &wsaData) == 0) is_valid_ = true; |
| 5451 | } |
| 5452 | |
| 5453 | ~WSInit() { |
| 5454 | if (is_valid_) WSACleanup(); |
nothing calls this directly
no outgoing calls
no test coverage detected