| 29 | } |
| 30 | |
| 31 | static inline char* IpToString(TIpHost ip, char* buf, size_t len) { |
| 32 | if (!inet_ntop(AF_INET, (void*)&ip, buf, (socklen_t)len)) { |
| 33 | ythrow TSystemError() << "Failed to get ip address string"; |
| 34 | } |
| 35 | |
| 36 | return buf; |
| 37 | } |
| 38 | |
| 39 | static inline TString IpToString(TIpHost ip) { |
| 40 | char buf[INET_ADDRSTRLEN]; |