| 173 | #define DEFAULT_BUFSIZE 4096 |
| 174 | |
| 175 | inline int _GetError |
| 176 | ( |
| 177 | ) |
| 178 | { |
| 179 | #ifdef _WIN32 |
| 180 | return WSAGetLastError(); |
| 181 | #else |
| 182 | return errno; |
| 183 | #endif |
| 184 | } |
| 185 | |
| 186 | inline std::string _GetErrorStr |
| 187 | ( |
no outgoing calls
no test coverage detected