| 82 | static constexpr size_t BufSize = 128 * 1024; |
| 83 | |
| 84 | Socket::Socket() : buf((char*)malloc(BufSize)), sock(-1) { |
| 85 | #ifdef _WIN32 |
| 86 | initWinSock(); |
| 87 | #endif |
| 88 | } |
| 89 | |
| 90 | Socket::Socket(int sock) : buf((char*)malloc(BufSize)), sock(sock) { |
| 91 | } |
nothing calls this directly
no test coverage detected