Lines Matching refs:hints
59 struct addrinfo *ai = NULL, *tmpai, hints;
136 memset(&hints, 0, sizeof(hints));
138 hints.ai_family = PF_INET;
140 hints.ai_family = PF_INET6;
142 hints.ai_family = PF_UNSPEC;
144 hints.ai_flags = AI_ADDRCONFIG;
147 hints.ai_socktype = SOCK_STREAM;
151 result = getaddrinfo(hostname, NULL, &hints, &ai);
162 if ((hints.ai_flags & AI_ADDRCONFIG) != 0) {
163 hints.ai_flags &= ~AI_ADDRCONFIG;