Searched refs:hints (Results 101 - 125 of 231) sorted by relevance

12345678910

/freebsd-10.0-release/crypto/heimdal/appl/test/
H A Dhttp_client.c51 struct addrinfo hints; local
55 memset (&hints, 0, sizeof(hints));
56 hints.ai_family = PF_UNSPEC;
57 hints.ai_socktype = SOCK_STREAM;
58 hints.ai_protocol = 0;
60 error = getaddrinfo (hostname, port, &hints, &ai);
/freebsd-10.0-release/sbin/setkey/
H A Dtest-pfkey.c475 struct addrinfo hints, *res; local
492 memset(&hints, 0, sizeof(hints));
493 hints.ai_family = af;
494 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
495 hints.ai_flags = AI_NUMERICHOST;
497 if (getaddrinfo(str, serv, &hints, &res) != 0 || res->ai_next) {
/freebsd-10.0-release/tools/regression/lib/libc/nss/
H A Dtest-getaddr.c52 static struct addrinfo hints; variable in typeref:struct:addrinfo
400 rv = getaddrinfo(line, NULL, &hints, &result);
444 memset(&hints, 0, sizeof(struct addrinfo));
445 hints.ai_family = PF_UNSPEC;
446 hints.ai_flags = AI_CANONNAME;
450 hints.ai_family = PF_INET;
452 hints.ai_family = PF_INET6;
/freebsd-10.0-release/usr.bin/w/
H A Dw.c346 struct addrinfo hints, *res; local
384 memset(&hints, 0, sizeof(hints));
385 hints.ai_flags = AI_PASSIVE;
386 hints.ai_family = AF_UNSPEC;
387 hints.ai_socktype = SOCK_STREAM;
388 if (getaddrinfo(p, NULL, &hints, &res) == 0) {
/freebsd-10.0-release/contrib/openbsm/bin/auditdistd/
H A Dproto_tcp.c110 struct addrinfo hints; local
120 bzero(&hints, sizeof(hints));
121 hints.ai_flags = AI_ADDRCONFIG | AI_NUMERICSERV;
122 hints.ai_family = PF_UNSPEC;
123 hints.ai_socktype = SOCK_STREAM;
124 hints.ai_protocol = IPPROTO_TCP;
128 hints.ai_family = PF_INET;
131 hints.ai_family = PF_INET6;
182 error = getaddrinfo(iporhost, portstr, &hints,
[all...]
/freebsd-10.0-release/sbin/hastd/
H A Dproto_tcp.c103 struct addrinfo hints; local
113 bzero(&hints, sizeof(hints));
114 hints.ai_flags = AI_ADDRCONFIG | AI_NUMERICSERV;
115 hints.ai_family = PF_UNSPEC;
116 hints.ai_socktype = SOCK_STREAM;
117 hints.ai_protocol = IPPROTO_TCP;
121 hints.ai_family = PF_INET;
124 hints.ai_family = PF_INET6;
175 error = getaddrinfo(iporhost, portstr, &hints,
[all...]
/freebsd-10.0-release/crypto/openssh/
H A Daddrmatch.c209 struct addrinfo hints, *ai; local
211 memset(&hints, '\0', sizeof(hints));
212 hints.ai_flags = AI_NUMERICHOST;
214 if (p == NULL || getaddrinfo(p, NULL, &hints, &ai) != 0)
H A Dsshconnect.c222 struct addrinfo hints, *res; local
256 memset(&hints, 0, sizeof(hints));
257 hints.ai_family = ai->ai_family;
258 hints.ai_socktype = ai->ai_socktype;
259 hints.ai_protocol = ai->ai_protocol;
260 hints.ai_flags = AI_PASSIVE;
261 gaierr = getaddrinfo(options.bind_address, NULL, &hints, &res);
381 struct addrinfo hints, *ai, *aitop; local
391 memset(&hints,
[all...]
/freebsd-10.0-release/lib/libpam/modules/pam_radius/
H A Dpam_radius.c83 struct addrinfo hints; local
109 memset(&hints, 0, sizeof(hints));
110 hints.ai_family = AF_INET;
111 if (getaddrinfo(nas_ipaddr, NULL, &hints, &res) == 0 &&
/freebsd-10.0-release/lib/libpam/modules/pam_unix/
H A Dpam_unix.c150 struct addrinfo hints, *res; local
234 memset(&hints, 0, sizeof(hints));
235 hints.ai_family = AF_UNSPEC;
236 if (getaddrinfo(rhost, NULL, &hints, &res) == 0) {
/freebsd-10.0-release/tools/tools/netrate/netsend/
H A Dnetsend.c287 struct addrinfo hints, *res, *ressave; local
294 memset(&hints, 0, sizeof(hints));
295 hints.ai_family = AF_UNSPEC;
297 if (getaddrinfo(argv[1], NULL, &hints, &res) != 0) {
/freebsd-10.0-release/usr.sbin/traceroute6/
H A Dtraceroute6.c372 struct addrinfo hints, *res; local
610 memset(&hints, 0, sizeof(hints));
611 hints.ai_family = PF_INET6;
612 hints.ai_socktype = SOCK_RAW;
613 hints.ai_protocol = IPPROTO_ICMPV6;
614 hints.ai_flags = AI_CANONNAME;
615 error = getaddrinfo(*argv, NULL, &hints, &res);
809 struct addrinfo hints, *res; local
812 memset(&hints,
[all...]
/freebsd-10.0-release/contrib/telnet/telnet/
H A Dcommands.c2187 struct addrinfo hints, *res, *res0 = NULL, *src_res, *src_res0 = NULL;
2248 memset(&hints, 0, sizeof(hints));
2249 hints.ai_family = family;
2250 hints.ai_socktype = SOCK_STREAM;
2251 error = getaddrinfo(src_addr, 0, &hints, &src_res);
2253 hints.ai_flags = 0;
2254 error = getaddrinfo(src_addr, 0, &hints, &src_res);
2316 memset(&hints, 0, sizeof(hints));
2179 struct addrinfo hints, *res, *res0 = NULL, *src_res, *src_res0 = NULL; local
2855 struct addrinfo hints, *res; local
[all...]
/freebsd-10.0-release/usr.sbin/mountd/
H A Dmountd.c602 struct addrinfo hints, *res = NULL; local
629 memset(&hints, 0, sizeof hints);
630 hints.ai_flags = AI_PASSIVE;
631 hints.ai_family = si.si_af;
632 hints.ai_socktype = si.si_socktype;
633 hints.ai_protocol = si.si_proto;
663 switch (hints.ai_family) {
667 hints.ai_flags |= AI_NUMERICHOST;
682 hints
819 struct addrinfo hints, *res = NULL; local
2270 struct addrinfo *ai, *tai, hints; local
2626 struct addrinfo hints, *ai = NULL; local
[all...]
/freebsd-10.0-release/crypto/heimdal/kdc/
H A Dhprop.c57 struct addrinfo hints; local
60 memset (&hints, 0, sizeof(hints));
61 hints.ai_socktype = SOCK_STREAM;
62 hints.ai_protocol = IPPROTO_TCP;
64 error = getaddrinfo (hostname, port, &hints, &ai);
/freebsd-10.0-release/usr.sbin/portsnap/phttpget/
H A Dphttpget.c293 struct addrinfo hints; /* Hints to getaddrinfo */ local
340 memset(&hints, 0, sizeof(hints));
341 hints.ai_family = PF_UNSPEC;
342 hints.ai_socktype = SOCK_STREAM;
344 env_HTTP_PROXY ? proxyport : "http", &hints, &res0);
/freebsd-10.0-release/contrib/ntp/ntpdc/
H A Dntpdc.c489 struct addrinfo hints, *ai = NULL; local
516 memset((char *)&hints, 0, sizeof(struct addrinfo));
517 hints.ai_family = ai_fam_templ;
518 hints.ai_protocol = IPPROTO_UDP;
519 hints.ai_socktype = SOCK_DGRAM;
520 hints.ai_flags = AI_NUMERICHOST;
522 a_info = getaddrinfo(hname, service, &hints, &ai);
528 hints.ai_flags = AI_CANONNAME;
530 hints.ai_flags |= AI_ADDRCONFIG;
532 a_info = getaddrinfo(hname, service, &hints,
1491 struct addrinfo hints, *ai = NULL; local
[all...]
/freebsd-10.0-release/crypto/heimdal/appl/rsh/
H A Drshd.c919 struct addrinfo *ai = NULL, hints; local
922 memset (&hints, 0, sizeof(hints));
923 hints.ai_flags = AI_PASSIVE;
924 hints.ai_socktype = SOCK_STREAM;
925 hints.ai_family = PF_UNSPEC;
928 error = getaddrinfo (NULL, port_str, &hints, &ai);
936 error = getaddrinfo(NULL, "ekshell", &hints, &ai);
939 error = getaddrinfo(NULL, portstr, &hints, &ai);
944 error = getaddrinfo(NULL, "kshell", &hints,
[all...]
/freebsd-10.0-release/contrib/telnet/telnetd/
H A Dtelnetd.c332 struct addrinfo hints, *res; local
340 memset(&hints, 0, sizeof(hints));
341 hints.ai_flags = AI_PASSIVE;
342 hints.ai_family = family;
343 hints.ai_socktype = SOCK_STREAM;
344 hints.ai_protocol = 0;
345 error = getaddrinfo(NULL, service, &hints, &res);
/freebsd-10.0-release/sys/arm/conf/
H A DEA32509 hints "EA3250.hints"
/freebsd-10.0-release/sys/mips/conf/
H A DAR71XX_BASE19 # For now, hints are per-board.
21 hints "AR71XX_BASE.hints"
H A DAR724X_BASE20 # For now, hints are per-board.
22 hints "AR724X_BASE.hints"
H A DAR91XX_BASE4 # This file (and the hints file accompanying it) are not designed to be
6 # config file which includes this file (which gets the basic hints), then
8 # hints as needed (for example, the GPIO and LAN PHY.)
20 hints "AR91XX_BASE.hints"
H A DAR933X_BASE4 # This file (and the hints file accompanying it) are not designed to be
6 # config file which includes this file (which gets the basic hints), then
8 # hints as needed (for example, the GPIO and LAN PHY.)
20 hints "AR933X_BASE.hints"
H A DAR934X_BASE4 # This file (and the hints file accompanying it) are not designed to be
6 # config file which includes this file (which gets the basic hints), then
8 # hints as needed (for example, the GPIO and LAN PHY.)
20 hints "AR934X_BASE.hints"

Completed in 384 milliseconds

12345678910