Home | History | Annotate | Download | only in common_source

Lines Matching refs:hints

134 	struct addrinfo hints, *res, *r;
156 (void)memset(&hints, 0, sizeof(hints));
157 hints.ai_family = PF_UNSPEC;
158 hints.ai_socktype = SOCK_STREAM;
159 error = getaddrinfo(hostname, port, &hints, &res);
353 struct addrinfo hints, *res0;
380 memset(&hints, 0, sizeof(hints));
381 hints.ai_flags = AI_CANONNAME;
382 hints.ai_family = PF_UNSPEC;
383 hints.ai_socktype = SOCK_STREAM;
384 error = getaddrinfo(gethost(RM), NULL, &hints, &res0);