Searched refs:getaddrinfo (Results 76 - 100 of 234) sorted by relevance

12345678910

/netbsd-current/usr.sbin/npf/npfctl/
H A Dnpf_data.c149 ret = getaddrinfo(name, NULL, &hint, &ai);
441 e = getaddrinfo(NULL, port, NULL, &rai);
/netbsd-current/crypto/external/bsd/openssh/dist/
H A Daddr.c383 if (p == NULL || getaddrinfo(p, NULL, &hints, &ai) != 0)
412 if (h == NULL || getaddrinfo(h, s, &hints, &ai) != 0)
H A Ddns.c185 if (getaddrinfo(hostname, NULL, &hints, &ai) == 0) {
H A Dauth.c745 if (getaddrinfo(name, NULL, &hints, &ai) == 0) {
767 if (getaddrinfo(name, NULL, &hints, &aitop) != 0) {
768 logit("reverse mapping checking getaddrinfo for %.700s "
/netbsd-current/external/mpl/bind/dist/bin/tests/
H A Dtest_client.c248 int r = getaddrinfo(address, NULL, &hints, &result);
267 int r = getaddrinfo(argv[optind], port, &hints, &result);
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dtest-mini_inetd.c59 rv = getaddrinfo("127.0.0.1", PORT_S, &ai, ret);
61 warnx("getaddrinfo: %s", gai_strerror(rv));
H A DMakefile.am29 getaddrinfo-test \
/netbsd-current/usr.sbin/faithd/
H A Dprefix.c81 if (getaddrinfo(p, "0", &hints, &res))
/netbsd-current/usr.bin/rusers/
H A Drusers.c241 ecode = getaddrinfo(host, NULL, NULL, &ai);
/netbsd-current/external/bsd/ntp/dist/tests/libntp/
H A Dauthkeys.c178 /* Converting a string to a host address. Here we use 'getaddrinfo()' in
195 if (getaddrinfo(astr, NULL, &hint, &ares))
/netbsd-current/libexec/httpd/
H A Ddaemon-bozo.c144 e = getaddrinfo(httpd->bindaddress, portnum, &h, &r0);
146 bozoerr(httpd, 1, "getaddrinfo([%s]:%s): %s",
/netbsd-current/tests/usr.sbin/inetd/
H A Dt_inetd.c248 ATF_REQUIRE_EQ_MSG(error = getaddrinfo(address, port, &hints, &res), 0,
/netbsd-current/usr.sbin/puffs/mount_9p/
H A Dninepuffs.c89 ret = getaddrinfo(hostname, portname, &hints, &ai0);
/netbsd-current/external/mit/libuv/dist/src/unix/
H A Dgetaddrinfo.c103 err = getaddrinfo(req->hostname, req->service, req->hints, &req->addrinfo);
/netbsd-current/usr.bin/systat/
H A Dnetcmds.c169 if (getaddrinfo(args, "0", &hints, &res0) != 0) {
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dser-tcp.c293 int r = getaddrinfo (parsed.host_str.c_str (),
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dser-tcp.c293 int r = getaddrinfo (parsed.host_str.c_str (),
/netbsd-current/usr.bin/getaddrinfo/
H A Dgetaddrinfo.c1 /* $NetBSD: getaddrinfo.c,v 1.5 2024/01/10 01:48:16 riastradh Exp $ */
33 __RCSID("$NetBSD: getaddrinfo.c,v 1.5 2024/01/10 01:48:16 riastradh Exp $");
145 error = getaddrinfo(hostname, service, &hints, &addrinfo);
/netbsd-current/external/mit/libuv/dist/
H A DMakefile.am70 src/win/getaddrinfo.c \
103 src/unix/getaddrinfo.c \
184 test/test-getaddrinfo.c \
/netbsd-current/share/examples/refuse/ian/libfetch/
H A Dcommon.c245 if (getaddrinfo(addr, NULL, &hints, &res0) != 0)
277 if ((err = getaddrinfo(host, pbuf, &hints, &res0)) != 0) {
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/krb5/
H A Dverify_krb5_conf.c208 ret = getaddrinfo(hostname, service, &hints, &ai);
211 ret = getaddrinfo(hostname, service, &hints, &ai);
/netbsd-current/usr.sbin/rpcbind/
H A Drpcbind.c452 if ((aicode = getaddrinfo(hosts[nhostsbak],
758 if (getaddrinfo(hosts[i], NULL, &hints, &res) != 0)
/netbsd-current/external/ibm-public/postfix/dist/src/util/
H A Dmyaddrinfo.c58 /* getaddrinfo(3) and getnameinfo(3) routines (which provide
62 /* On systems without getaddrinfo(3) and getnameinfo(3) support,
141 /* getaddrinfo(3), getnameinfo(3), freeaddrinfo(3), gai_strerror(3)
160 /* don't know how the system library routine getaddrinfo()
161 /* allocates memory. For example, getaddrinfo() could save
166 /* We could get around this by copying getaddrinfo() results
173 /* original getaddrinfo() result can be hidden at the end
230 * otherwise getaddrinfo() will give us duplicate results: one set for TCP,
234 #define MAI_SOCKTYPE SOCK_STREAM /* getaddrinfo() query */
311 * Emulated getaddrinfo(
[all...]
/netbsd-current/usr.sbin/lpr/lpd/
H A Dlpd.c642 error = getaddrinfo(fromb, NULL, &hints, &res);
751 error = getaddrinfo((blist_addrs == 0) ? NULL : blist[blidx],
/netbsd-current/usr.sbin/wgconfig/
H A Dwgconfig.c564 error = getaddrinfo(addr, port, &hints, &res);
566 errx(EXIT_FAILURE, "getaddrinfo: %s", gai_strerror(error));
613 error = getaddrinfo(ip, 0, &hints, &res);
615 errx(EXIT_FAILURE, "getaddrinfo: %s",

Completed in 376 milliseconds

12345678910