| 164 | } |
| 165 | |
| 166 | std::string DomainResolver::ErrorString(int error_code) |
| 167 | { |
| 168 | #ifndef _WIN32 |
| 169 | return hstrerror(error_code); |
| 170 | #else |
| 171 | return strerror(error_code); |
| 172 | #endif |
| 173 | } |
| 174 | |
| 175 | } // namespace toft |
| 176 |
nothing calls this directly
no outgoing calls
no test coverage detected