Lines Matching refs:hints
89 struct addrinfo hints, *res, *ai; in getport() local
98 memset(&hints, 0, sizeof(hints)); in getport()
99 hints.ai_family = family; in getport()
100 hints.ai_socktype = SOCK_STREAM; in getport()
101 hints.ai_protocol = 0; in getport()
103 &hints, &res); in getport()
183 struct addrinfo hints, *local_res, *remote_res, *lr, *rr; in checkremote() local
201 memset(&hints, 0, sizeof(hints)); in checkremote()
202 hints.ai_family = family; in checkremote()
203 hints.ai_socktype = SOCK_STREAM; in checkremote()
204 hints.ai_flags = AI_PASSIVE; in checkremote()
205 if ((errno = getaddrinfo(lclhost, NULL, &hints, &local_res)) != 0) { in checkremote()
213 memset(&hints, 0, sizeof(hints)); in checkremote()
214 hints.ai_family = family; in checkremote()
215 hints.ai_socktype = SOCK_STREAM; in checkremote()
216 hints.ai_flags = AI_PASSIVE; in checkremote()
218 &hints, &remote_res)) != 0) { in checkremote()