hints             312 daemons/execd/remoted_tls.c     struct addrinfo hints;
hints             314 daemons/execd/remoted_tls.c     memset(&hints, 0, sizeof(struct addrinfo));
hints             315 daemons/execd/remoted_tls.c     hints.ai_flags = AI_PASSIVE;
hints             316 daemons/execd/remoted_tls.c     hints.ai_family = AF_UNSPEC; // IPv6 or IPv4
hints             317 daemons/execd/remoted_tls.c     hints.ai_socktype = SOCK_STREAM;
hints             318 daemons/execd/remoted_tls.c     hints.ai_protocol = IPPROTO_TCP;
hints             321 daemons/execd/remoted_tls.c     rc = getaddrinfo(bind_name, port_str, &hints, res);
hints            1070 lib/common/remote.c     struct addrinfo hints;
hints            1078 lib/common/remote.c     memset(&hints, 0, sizeof(struct addrinfo));
hints            1079 lib/common/remote.c     hints.ai_family = AF_UNSPEC;        /* Allow IPv4 or IPv6 */
hints            1080 lib/common/remote.c     hints.ai_socktype = SOCK_STREAM;
hints            1081 lib/common/remote.c     hints.ai_flags = AI_CANONNAME;
hints            1082 lib/common/remote.c     rc = getaddrinfo(server, NULL, &hints, &res);