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

/macosx-10.10/OpenSSH-189/openssh/
H A Dsshconnect.c197 int sock, gaierr; local
232 gaierr = getaddrinfo(options.bind_address, NULL, &hints, &res);
233 if (gaierr) {
235 ssh_gai_strerror(gaierr));
348 int gaierr; local
366 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
368 host, ssh_gai_strerror(gaierr));
H A Dssh-keyscan.c297 int gaierr, s = -1; local
303 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
304 fatal("getaddrinfo %s: %s", host, ssh_gai_strerror(gaierr));
H A Dmisc.c128 ssh_gai_strerror(int gaierr) argument
130 if (gaierr == EAI_SYSTEM)
132 return gai_strerror(gaierr);
H A Dchannels.c3307 int gaierr; local
3318 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
3320 ssh_gai_strerror(gaierr));
3428 int gaierr, n, num_socks = 0, socks[NUM_SOCKS]; local
3442 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
3443 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
3555 int gaierr, sock = 0; local
3642 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
3644 ssh_gai_strerror(gaierr));
H A Dservconf.c568 int gaierr; local
575 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
578 ssh_gai_strerror(gaierr));
/macosx-10.10/ruby-106/ruby/ext/socket/
H A Dextconf.rb275 int passive, gaierr, inet4 = 0, inet6 = 0;
290 if ((gaierr = getaddrinfo(NULL, "54321", &hints, &aitop)) != 0) {
291 (void)gai_strerror(gaierr);
/macosx-10.10/tcpdump-61/tcpdump/
H A Dconfigure5217 int passive, gaierr, inet4 = 0, inet6 = 0;
5227 if ((gaierr = getaddrinfo(NULL, "54321", &hints, &aitop)) != 0) {
5228 (void)gai_strerror(gaierr);

Completed in 135 milliseconds