Searched refs:gaierr (Results 1 - 6 of 6) sorted by relevance

/freebsd-10.0-release/crypto/openssh/
H A Dsshconnect.c221 int sock, gaierr; local
261 gaierr = getaddrinfo(options.bind_address, NULL, &hints, &res);
262 if (gaierr) {
264 ssh_gai_strerror(gaierr));
377 int gaierr; local
395 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
397 host, ssh_gai_strerror(gaierr));
H A Dssh-keyscan.c293 int gaierr, s = -1; local
299 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
300 fatal("getaddrinfo %s: %s", host, ssh_gai_strerror(gaierr));
H A Dmisc.c129 ssh_gai_strerror(int gaierr) argument
131 if (gaierr == EAI_SYSTEM && errno != 0)
133 return gai_strerror(gaierr);
H A Dchannels.c3371 int gaierr; local
3382 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
3384 ssh_gai_strerror(gaierr));
3492 int gaierr, n, num_socks = 0, socks[NUM_SOCKS]; local
3506 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
3507 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
3625 int gaierr, sock = 0; local
3692 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
3694 ssh_gai_strerror(gaierr));
H A Dservconf.c601 int gaierr; local
608 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
611 ssh_gai_strerror(gaierr));
/freebsd-10.0-release/contrib/tcpdump/
H A Dconfigure4578 int passive, gaierr, inet4 = 0, inet6 = 0;
4588 if ((gaierr = getaddrinfo(NULL, "54321", &hints, &aitop)) != 0) {
4589 (void)gai_strerror(gaierr);

Completed in 177 milliseconds