| 77 | const char *service, int flags, int family) |
| 78 | { |
| 79 | const struct addrinfo hints = {flags, family,}; |
| 80 | struct addrinfo* res; |
| 81 | |
| 82 | int error = getaddrinfo(host, service, &hints, &res); |
nothing calls this directly
no outgoing calls
no test coverage detected