Lines Matching refs:hints
49 struct addrinfo *ai = NULL, *tmpai, hints;
125 memset(&hints, 0, sizeof(hints));
127 hints.ai_family = PF_INET;
129 hints.ai_family = PF_INET6;
131 hints.ai_family = PF_UNSPEC;
133 hints.ai_flags = AI_ADDRCONFIG;
136 hints.ai_socktype = SOCK_STREAM;
140 result = getaddrinfo(hostname, NULL, &hints, &ai);
151 if ((hints.ai_flags & AI_ADDRCONFIG) != 0) {
152 hints.ai_flags &= ~AI_ADDRCONFIG;