hints 314 daemons/execd/remoted_tls.c struct addrinfo hints; hints 316 daemons/execd/remoted_tls.c memset(&hints, 0, sizeof(struct addrinfo)); hints 317 daemons/execd/remoted_tls.c hints.ai_flags = AI_PASSIVE; hints 318 daemons/execd/remoted_tls.c hints.ai_family = AF_UNSPEC; // IPv6 or IPv4 hints 319 daemons/execd/remoted_tls.c hints.ai_socktype = SOCK_STREAM; hints 320 daemons/execd/remoted_tls.c hints.ai_protocol = IPPROTO_TCP; hints 323 daemons/execd/remoted_tls.c rc = getaddrinfo(bind_name, port_str, &hints, res); hints 1083 lib/common/remote.c struct addrinfo hints; hints 1091 lib/common/remote.c memset(&hints, 0, sizeof(struct addrinfo)); hints 1092 lib/common/remote.c hints.ai_family = AF_UNSPEC; /* Allow IPv4 or IPv6 */ hints 1093 lib/common/remote.c hints.ai_socktype = SOCK_STREAM; hints 1094 lib/common/remote.c hints.ai_flags = AI_CANONNAME; hints 1095 lib/common/remote.c rc = getaddrinfo(server, NULL, &hints, &res);