Lines Matching refs:hints
261 struct addrinfo hints, *res = NULL; local
266 memset(&hints, 0, sizeof hints);
268 hints.ai_flags = AI_PASSIVE;
270 hints.ai_flags = AI_NUMERICSERV;
272 hints.ai_family = AF_UNSPEC;
273 hints.ai_socktype = SOCK_STREAM;
277 hints.ai_family = AF_INET;
279 hints.ai_flags |= AI_NUMERICHOST;
284 hints.ai_family = AF_INET6;
286 hints.ai_flags |= AI_NUMERICHOST;
295 rc = getaddrinfo(addr, port_buf, &hints, &res);
297 rc = getaddrinfo(NULL, port_buf, &hints, &res);