| 127 | } |
| 128 | |
| 129 | IPStr ip2str(ip_t ip) { |
| 130 | IPStr str; |
| 131 | if (inet_ntop(AF_INET, &ip, str._buf, INET_ADDRSTRLEN) == NULL) { |
| 132 | return ip2str(IP_NONE); |
| 133 | } |
| 134 | return str; |
| 135 | } |
| 136 | |
| 137 | int ip2hostname(ip_t ip, char* host, size_t host_len) { |
| 138 | if (host == NULL || host_len == 0) { |
no outgoing calls