Searched refs:getaddrinfo (Results 26 - 50 of 234) sorted by relevance

12345678910

/netbsd-current/sbin/mount_portal/
H A Dpt_tcp.c106 if (getaddrinfo(host, port, &hints, &res) != 0)
/netbsd-current/usr.bin/finger/
H A Dnet.c85 error = getaddrinfo(host, "finger", &hints, &res0);
/netbsd-current/usr.sbin/ypserv/stdhosts/
H A Dstdhosts.c115 getaddrinfo(k, "0", &hints, &res) == 0) {
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/ipc/
H A Dts-http.c87 ret = getaddrinfo(NULL, "8080", &hints, &res0);
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dgetaddrinfo-test.c1 /* $NetBSD: getaddrinfo-test.c,v 1.2 2017/01/28 21:31:50 christos Exp $ */
83 ret = getaddrinfo (nodename, servname, &hints, &res);
/netbsd-current/tests/net/ipsec/
H A Dnatt_terminator.c92 e = getaddrinfo(addr, port, &hints, &res);
94 errx(EXIT_FAILURE, "getaddrinfo failed: %s", gai_strerror(e));
/netbsd-current/external/bsd/ntp/dist/include/
H A Dntp_rfc2553.h154 * Flag values for getaddrinfo()
197 * Error return codes from getaddrinfo()
215 int getaddrinfo (const char *, const char *,
/netbsd-current/external/mit/libuv/dist/test/
H A Dbenchmark-list.h67 BENCHMARK_DECLARE (getaddrinfo)
153 BENCHMARK_ENTRY (getaddrinfo)
/netbsd-current/external/mit/libuv/lib/
H A DMakefile27 getaddrinfo.c \
/netbsd-current/tests/net/net/
H A Dt_udp.c31 e = getaddrinfo("localhost", "9999", &hints, &res);
32 ATF_REQUIRE_MSG(e == 0, "getaddrinfo AF=%d: %s", family,
/netbsd-current/tests/net/sys/
H A Dt_rfc6056.c75 error = getaddrinfo(hostname, service, &hints, &res);
/netbsd-current/usr.sbin/tcpdrop/
H A Dtcpdrop.c85 if ((gaierr = getaddrinfo(host, serv, &hints, &ai)) != 0)
/netbsd-current/external/gpl2/xcvs/dist/lib/
H A Dgetaddrinfo.c19 __RCSID("$NetBSD: getaddrinfo.c,v 1.2 2016/05/17 14:00:09 christos Exp $");
26 #include "getaddrinfo.h"
62 getaddrinfo (const char *restrict nodename, function
H A DMakefile.gnulib86 ## begin gnulib module getaddrinfo
88 libgnu_a_SOURCES += getaddrinfo.h
90 ## end gnulib module getaddrinfo
H A Dlibcvs.mak56 -@erase "$(INTDIR)\getaddrinfo.obj"
164 "$(INTDIR)\getaddrinfo.obj" \
239 -@erase "$(INTDIR)\getaddrinfo.obj"
344 "$(INTDIR)\getaddrinfo.obj" \
484 SOURCE=.\getaddrinfo.c
486 "$(INTDIR)\getaddrinfo.obj" : $(SOURCE) "$(INTDIR)"
/netbsd-current/usr.sbin/rdate/
H A Drdate.c123 error = getaddrinfo(hname, "time", &hints, &res0);
/netbsd-current/usr.sbin/tcpdchk/
H A Dscaffold.c58 error = getaddrinfo(host, "0", &hints, &res);
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/wind/
H A Didn-lookup.c114 ret = getaddrinfo(encoded, NULL, &hints, &ai);
116 errx(1, "getaddrinfo failed: %s", gai_strerror(ret));
/netbsd-current/external/gpl3/gcc/dist/libcody/
H A Dnetclient.cc105 if (int err = getaddrinfo (name, nullptr, &hints, &addrs))
H A Dnetserver.cc112 /* getaddrinfo requires a port number, but is quite happy to accept
114 if (int err = getaddrinfo (name, "0", &hints, &addrs))
/netbsd-current/crypto/external/bsd/heimdal/dist/kadmin/
H A Dkadm_conn.c251 e = getaddrinfo(NULL, p->port, &hints, &ai);
254 e = getaddrinfo(NULL, portstr, &hints, &ai);
/netbsd-current/sbin/mount_nfs/
H A Dgetnfsargs.c137 if (getaddrinfo(hostp, "nfs", &hints, &ai_nfs) != 0) {
139 if ((ecode = getaddrinfo(hostp, "nfs", &hints, &ai_nfs)) != 0) {
/netbsd-current/usr.sbin/rpc.statd/
H A Dstat_proc.c70 if (getaddrinfo(arg->mon_name, NULL, NULL, &ai) == 0) {
115 if (getaddrinfo(arg->mon_id.mon_name, NULL, NULL, &ai) != 0) {
/netbsd-current/usr.bin/whois/
H A Dwhois.c190 error = getaddrinfo(server, port, &hints, &res);
353 getaddrinfo(server, NULL, &hints, &res) != 0)) {
/netbsd-current/crypto/dist/ipsec-tools/src/racoon/
H A Dprsa_par.y266 err = getaddrinfo($1, NULL, &hints, &res);
268 prsaerror("getaddrinfo(%s): %s\n", $1, gai_strerror(err));
295 err = getaddrinfo($1, NULL, &hints, &res);
297 prsaerror("getaddrinfo(%s): %s\n", $1, gai_strerror(err));

Completed in 383 milliseconds

12345678910