hints             866 lib/common/remote.c     struct addrinfo hints;
hints             872 lib/common/remote.c     memset(&hints, 0, sizeof(struct addrinfo));
hints             873 lib/common/remote.c     hints.ai_family = AF_UNSPEC;        /* Allow IPv4 or IPv6 */
hints             874 lib/common/remote.c     hints.ai_socktype = SOCK_STREAM;
hints             875 lib/common/remote.c     hints.ai_flags = AI_CANONNAME;
hints             876 lib/common/remote.c     ret_ga = getaddrinfo(server, NULL, &hints, &res);
hints             299 lrmd/tls_backend.c     struct addrinfo hints, *res = NULL, *iter;
hints             328 lrmd/tls_backend.c     memset(&hints, 0, sizeof(struct addrinfo));
hints             332 lrmd/tls_backend.c     hints.ai_flags = AI_PASSIVE;
hints             333 lrmd/tls_backend.c     hints.ai_family = AF_UNSPEC; /* Return IPv6 or IPv4 */
hints             334 lrmd/tls_backend.c     hints.ai_socktype = SOCK_STREAM;
hints             335 lrmd/tls_backend.c     hints.ai_protocol = IPPROTO_TCP;
hints             338 lrmd/tls_backend.c     rc = getaddrinfo(NULL, port_str, &hints, &res);