hints 328 daemons/execd/remoted_tls.c struct addrinfo hints; hints 330 daemons/execd/remoted_tls.c memset(&hints, 0, sizeof(struct addrinfo)); hints 331 daemons/execd/remoted_tls.c hints.ai_flags = AI_PASSIVE; hints 332 daemons/execd/remoted_tls.c hints.ai_family = AF_UNSPEC; // IPv6 or IPv4 hints 333 daemons/execd/remoted_tls.c hints.ai_socktype = SOCK_STREAM; hints 334 daemons/execd/remoted_tls.c hints.ai_protocol = IPPROTO_TCP; hints 337 daemons/execd/remoted_tls.c rc = getaddrinfo(bind_name, port_str, &hints, res); hints 820 lib/common/remote.c struct addrinfo hints; hints 828 lib/common/remote.c memset(&hints, 0, sizeof(struct addrinfo)); hints 829 lib/common/remote.c hints.ai_family = AF_UNSPEC; /* Allow IPv4 or IPv6 */ hints 830 lib/common/remote.c hints.ai_socktype = SOCK_STREAM; hints 831 lib/common/remote.c hints.ai_flags = AI_CANONNAME; hints 833 lib/common/remote.c rc = getaddrinfo(server, NULL, &hints, &res);