Home | History | Annotate | Download | only in openssh

Lines Matching full:hints

2644 	struct addrinfo hints, *ai, *aitop;
2697 * set to NULL and hints.ai_flags is not AI_PASSIVE
2699 memset(&hints, 0, sizeof(hints));
2700 hints.ai_family = IPv4or6;
2701 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
2702 hints.ai_socktype = SOCK_STREAM;
2704 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
3137 struct addrinfo hints;
3145 memset(&hints, 0, sizeof(hints));
3146 hints.ai_family = IPv4or6;
3147 hints.ai_socktype = SOCK_STREAM;
3149 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
3257 struct addrinfo hints, *ai, *aitop;
3268 memset(&hints, 0, sizeof(hints));
3269 hints.ai_family = IPv4or6;
3270 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
3271 hints.ai_socktype = SOCK_STREAM;
3273 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
3384 struct addrinfo hints, *ai, *aitop;
3449 memset(&hints, 0, sizeof(hints));
3450 hints.ai_family = IPv4or6;
3451 hints.ai_socktype = SOCK_STREAM;
3453 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {