Lines Matching refs:hints
91 struct addrinfo hints, *res, *ai; in getport() local
100 memset(&hints, 0, sizeof(hints)); in getport()
101 hints.ai_family = family; in getport()
102 hints.ai_socktype = SOCK_STREAM; in getport()
103 hints.ai_protocol = 0; in getport()
105 &hints, &res); in getport()
185 struct addrinfo hints, *local_res, *remote_res, *lr, *rr; in checkremote() local
203 memset(&hints, 0, sizeof(hints)); in checkremote()
204 hints.ai_family = family; in checkremote()
205 hints.ai_socktype = SOCK_STREAM; in checkremote()
206 hints.ai_flags = AI_PASSIVE; in checkremote()
207 if ((errno = getaddrinfo(lclhost, NULL, &hints, &local_res)) != 0) { in checkremote()
215 memset(&hints, 0, sizeof(hints)); in checkremote()
216 hints.ai_family = family; in checkremote()
217 hints.ai_socktype = SOCK_STREAM; in checkremote()
218 hints.ai_flags = AI_PASSIVE; in checkremote()
220 &hints, &remote_res)) != 0) { in checkremote()