hints             324 daemons/execd/remoted_tls.c     struct addrinfo hints;
hints             326 daemons/execd/remoted_tls.c     memset(&hints, 0, sizeof(struct addrinfo));
hints             327 daemons/execd/remoted_tls.c     hints.ai_flags = AI_PASSIVE;
hints             328 daemons/execd/remoted_tls.c     hints.ai_family = AF_UNSPEC; // IPv6 or IPv4
hints             329 daemons/execd/remoted_tls.c     hints.ai_socktype = SOCK_STREAM;
hints             330 daemons/execd/remoted_tls.c     hints.ai_protocol = IPPROTO_TCP;
hints             333 daemons/execd/remoted_tls.c     rc = getaddrinfo(bind_name, port_str, &hints, res);
hints             812 lib/common/remote.c     struct addrinfo hints;
hints             820 lib/common/remote.c     memset(&hints, 0, sizeof(struct addrinfo));
hints             821 lib/common/remote.c     hints.ai_family = AF_UNSPEC;        /* Allow IPv4 or IPv6 */
hints             822 lib/common/remote.c     hints.ai_socktype = SOCK_STREAM;
hints             823 lib/common/remote.c     hints.ai_flags = AI_CANONNAME;
hints             825 lib/common/remote.c     rc = getaddrinfo(server, NULL, &hints, &res);