Searched refs:hints (Results 151 - 170 of 170) sorted by relevance

1234567

/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssh/dist/
H A Dservconf.c658 struct addrinfo hints, *ai, *aitop; local
662 memset(&hints, 0, sizeof(hints));
663 hints.ai_family = options->address_family;
664 hints.ai_socktype = SOCK_STREAM;
665 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
667 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
/netbsd-6-1-5-RELEASE/usr.sbin/inetd/
H A Dinetd.c866 struct addrinfo hints, *res; local
885 memset(&hints, 0, sizeof(hints));
886 hints.ai_family = sep->se_family;
887 hints.ai_socktype = sep->se_socktype;
888 hints.ai_flags = AI_PASSIVE;
897 error = getaddrinfo(host, port, &hints, &res);
/netbsd-6-1-5-RELEASE/external/apache2/mDNSResponder/dist/Clients/
H A Ddns-sd.c854 struct addrinfo hints; local
857 memset(&hints, 0, sizeof(hints));
858 hints.ai_family = AF_INET;
860 if (getaddrinfo(name, NULL, &hints, &addrs) == 0)
/netbsd-6-1-5-RELEASE/libexec/ftpd/
H A Dftpd.c502 struct addrinfo hints, *res, *res0; local
514 (void)memset(&hints, 0, sizeof(hints));
515 hints.ai_flags = AI_PASSIVE;
516 hints.ai_family = af;
517 hints.ai_socktype = SOCK_STREAM;
518 error = getaddrinfo(NULL, "ftp", &hints, &res0);
3242 struct addrinfo hints; local
3273 memset(&hints, 0, sizeof(hints));
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/ntpd/
H A Dntp_config.c4348 struct addrinfo hints; local
4353 memset(&hints, 0, sizeof(hints));
4362 hints.ai_flags = AI_NUMERICHOST;
4363 hints.ai_family = AF(&ipaddr);
4384 if (AF_INET6 == hints.ai_family && !ipv6_works)
4387 if (AF_UNSPEC == hints.ai_family) {
4389 hints.ai_family = AF_INET;
4391 hints.ai_family = AF_INET6;
4393 hints
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/syslogd/
H A Dsyslogd.c3603 struct addrinfo hints, *res; local
3796 memset(&hints, 0, sizeof(hints));
3797 hints.ai_family = AF_UNSPEC;
3798 hints.ai_socktype = SOCK_DGRAM;
3799 hints.ai_protocol = 0;
3800 error = getaddrinfo(f->f_un.f_forw.f_hname, "syslog", &hints,
3942 struct addrinfo hints, *res, *r; local
3950 memset(&hints, 0, sizeof(hints));
[all...]
/netbsd-6-1-5-RELEASE/games/adventure/
H A Dio.c255 case 11: /* hints */
514 hints[hintnum][i] = rnum();
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/contrib/idn/idnkit-1.0-src/tools/runidn/
H A Dresolver.c962 const struct addrinfo *hints, struct addrinfo **res)
970 return (REAL(getaddrinfo)(nodename, servname, hints, res));
982 err = REAL(getaddrinfo)(nodename, servname, hints, &aip);
961 getaddrinfo(const char *nodename, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
/netbsd-6-1-5-RELEASE/usr.sbin/route6d/
H A Droute6d.c560 struct addrinfo hints, *res; local
569 memset(&hints, 0, sizeof(hints));
570 hints.ai_family = PF_INET6;
571 hints.ai_socktype = SOCK_DGRAM;
572 hints.ai_flags = AI_PASSIVE;
573 error = getaddrinfo(NULL, port, &hints, &res);
623 memset(&hints, 0, sizeof(hints));
624 hints
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/servers/slapd/
H A Ddaemon.c1162 struct addrinfo hints, *res, *sai; local
1166 memset( &hints, '\0', sizeof(hints) );
1167 hints.ai_flags = AI_PASSIVE;
1168 hints.ai_socktype = SOCK_STREAM;
1169 hints.ai_family = slap_inet4or6;
1172 if ( (err = getaddrinfo(host, serv, &hints, &res)) ) {
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/src/
H A Dclient.c5162 struct addrinfo hints, *res, *res0 = NULL;
5166 memset(&hints, 0, sizeof(hints));
5167 hints.ai_family = PF_UNSPEC;
5168 hints.ai_socktype = SOCK_STREAM;
5169 hints.ai_flags = AI_CANONNAME;
5172 e = getaddrinfo(hostname, pbuf, &hints, &res0);
5161 struct addrinfo hints, *res, *res0 = NULL; local
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpn/ia64/
H A Dgcd_1.asm96 C Lack of branch hints might introduce a couple of bubbles too.
/netbsd-6-1-5-RELEASE/dist/pf/sbin/pfctl/
H A Dpfctl.c392 struct addrinfo hints, *res; local
402 bzero(&hints, sizeof(hints));
404 hints.ai_flags |= AI_NUMERICHOST;
406 if ((ret_ga = getaddrinfo(addr, NULL, &hints, &res))) {
/netbsd-6-1-5-RELEASE/crypto/dist/ipsec-tools/src/racoon/
H A Doakley.c1836 struct addrinfo hints, *res; local
1862 memset(&hints, 0, sizeof(hints));
1863 hints.ai_family = PF_UNSPEC;
1864 hints.ai_socktype = SOCK_RAW;
1865 hints.ai_flags = AI_NUMERICHOST;
1866 error = getaddrinfo(altname, NULL, &hints, &res);
/netbsd-6-1-5-RELEASE/external/bsd/tcpdump/dist/
H A Dconfigure5184 struct addrinfo hints, *ai, *aitop;
5188 memset(&hints, 0, sizeof(hints));
5189 hints.ai_family = AF_UNSPEC;
5190 hints.ai_flags = passive ? AI_PASSIVE : 0;
5191 hints.ai_socktype = SOCK_STREAM;
5192 hints.ai_protocol = IPPROTO_TCP;
5193 if ((gaierr = getaddrinfo(NULL, "54321", &hints, &aitop)) != 0) {
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/named/
H A Dquery.c5915 * the hints DB.
5921 if (client->view->hints == NULL) {
5922 /* We have no hints. */
5925 dns_db_attach(client->view->hints, &db);
5934 * Nonsensical root hints may require cleanup.
5945 * We don't have any root server hints, but
H A Dserver.c2289 * We have default hints for class IN if we need them.
2291 if (view->rdclass == dns_rdataclass_in && view->hints == NULL)
2295 * If we still have no hints, this is a non-IN view with no
2296 * "hints zone" configured. Issue a warning, except if this
2298 * their hints, so it's no point requiring users to configure
2301 if (view->hints == NULL) {
2311 "no root hints for view '%s'",
2889 * are used for real lookups and so care about hints.
3327 * "hints zones" aren't zones. If we've got one,
3348 "could not configure root hints "
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/dns/
H A Dresolver.c7711 res->view->cache != NULL && res->view->hints != NULL) {
7713 dns_root_checkhints(res->view, res->view->hints, db);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/ld/
H A DMakefile.am487 elf-hints-local.h $(PLUGIN_H)
H A Dconfigure16163 for ac_header in string.h strings.h stdlib.h unistd.h elf-hints.h limits.h sys/param.h

Completed in 733 milliseconds

1234567