/external/openssh/ |
auth.c | 829 struct addrinfo hints, *ai, *aitop; local 884 if (getaddrinfo(name, NULL, &hints, &aitop) != 0) { 890 for (ai = aitop; ai; ai = ai->ai_next) { 896 freeaddrinfo(aitop);
|
ssh-keyscan.c | 362 struct addrinfo hints, *ai, *aitop; local 370 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) { 374 for (ai = aitop; ai; ai = ai->ai_next) { 390 freeaddrinfo(aitop);
|
channels.h | 90 struct addrinfo *ai, *aitop; member in struct:channel_connect
|
servconf.c | 635 struct addrinfo hints, *ai, *aitop; local 644 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0) 648 for (ai = aitop; ai->ai_next; ai = ai->ai_next) 651 options->listen_addrs = aitop; [all...] |
channels.c | 3188 struct addrinfo hints, *ai, *aitop; local 4255 struct addrinfo hints, *ai, *aitop; local 4409 struct addrinfo hints, *ai, *aitop; local [all...] |
/external/libevent/test/ |
regress_http.c | 171 struct evutil_addrinfo ai, *aitop; local 182 if (evutil_getaddrinfo(address, strport, &ai, &aitop) != 0) { 186 sa = aitop->ai_addr; 187 slen = aitop->ai_addrlen; 206 evutil_freeaddrinfo(aitop); [all...] |
/external/libevent/ |
http.c | 4388 struct evutil_addrinfo *aitop = NULL; local [all...] |