| 4288 | class WSInit { |
| 4289 | public: |
| 4290 | WSInit() { |
| 4291 | WSADATA wsaData; |
| 4292 | if (WSAStartup(0x0002, &wsaData) == 0) is_valid_ = true; |
| 4293 | } |
| 4294 | |
| 4295 | ~WSInit() { |
| 4296 | if (is_valid_) WSACleanup(); |
nothing calls this directly
no outgoing calls
no test coverage detected