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

1234567891011>>

/freebsd-current/usr.sbin/ntp/doc/
H A DMakefile5 SUBDIR= drivers hints icons pic scripts
14 extern.html filter.html hints.html history.html howto.html \
/freebsd-current/contrib/ofed/librdmacm/examples/
H A Dcmatose.c82 static struct rdma_addrinfo hints; variable in typeref:struct:rdma_addrinfo
387 &test.nodes[i], hints.ai_port_space);
502 ret = rdma_create_id(test.channel, &listen_id, &test, hints.ai_port_space);
508 ret = get_rdma_addr(src_addr, dst_addr, port, &hints, &test.rai);
581 ret = get_rdma_addr(src_addr, dst_addr, port, &hints, &test.rai);
637 hints.ai_port_space = RDMA_PS_TCP;
648 hints.ai_flags = RAI_NUMERICHOST;
650 hints.ai_flags = RAI_NUMERICHOST | RAI_FAMILY;
651 hints.ai_family = AF_IB;
658 hints
[all...]
/freebsd-current/crypto/openssh/
H A Dauth.c676 struct addrinfo hints, *ai, *aitop; local
706 memset(&hints, 0, sizeof(hints));
707 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
708 hints.ai_flags = AI_NUMERICHOST;
709 if (getaddrinfo(name, NULL, &hints, &ai) == 0) {
728 memset(&hints, 0, sizeof(hints));
729 hints.ai_family = from.ss_family;
730 hints
[all...]
/freebsd-current/lib/libcasper/services/cap_dns/
H A Dcap_dns.c218 const struct addrinfo *hints, struct addrinfo **res)
233 if (hints != NULL) {
234 nvlist_add_number(nvl, "hints.ai_flags",
235 (uint64_t)hints->ai_flags);
236 nvlist_add_number(nvl, "hints.ai_family",
237 (uint64_t)hints->ai_family);
238 nvlist_add_number(nvl, "hints.ai_socktype",
239 (uint64_t)hints->ai_socktype);
240 nvlist_add_number(nvl, "hints.ai_protocol",
241 (uint64_t)hints
217 cap_getaddrinfo(cap_channel_t *chan, const char *hostname, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
614 struct addrinfo hints, *hintsp, *res, *cur; local
[all...]
/freebsd-current/contrib/ofed/librdmacm/
H A Dcma.h99 const struct rdma_addrinfo *hints);
/freebsd-current/sbin/ldconfig/
H A Dldconfig.c40 #include <elf-hints.h>
/freebsd-current/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-current/sbin/setkey/
H A Dtest-pfkey.c476 struct addrinfo hints, *res; local
493 memset(&hints, 0, sizeof(hints));
494 hints.ai_family = af;
495 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
496 hints.ai_flags = AI_NUMERICHOST;
498 if (getaddrinfo(str, serv, &hints, &res) != 0 || res->ai_next) {
/freebsd-current/usr.bin/whois/
H A Dwhois.c274 struct addrinfo hints, *res; local
277 memset(&hints, 0, sizeof(hints));
278 hints.ai_flags = AI_CANONNAME;
279 hints.ai_family = AF_UNSPEC;
280 hints.ai_socktype = SOCK_STREAM;
282 error = getaddrinfo(host, hport, &hints, &res);
/freebsd-current/contrib/openbsm/bin/auditdistd/
H A Dproto_tcp.c108 struct addrinfo hints; local
118 bzero(&hints, sizeof(hints));
119 hints.ai_flags = AI_ADDRCONFIG | AI_NUMERICSERV;
120 hints.ai_family = PF_UNSPEC;
121 hints.ai_socktype = SOCK_STREAM;
122 hints.ai_protocol = IPPROTO_TCP;
126 hints.ai_family = PF_INET;
129 hints.ai_family = PF_INET6;
180 error = getaddrinfo(iporhost, portstr, &hints,
[all...]
/freebsd-current/contrib/libpcap/rpcapd/
H A Drpcapd.c1332 struct addrinfo hints; // temporary struct to keep settings needed to open the new socket local
1339 memset(&hints, 0, sizeof(struct addrinfo));
1341 hints.ai_family = AF_INET; // PF_UNSPEC to have both IPv4 and IPv6 server
1342 hints.ai_socktype = SOCK_STREAM;
1343 hints.ai_family = activepars->ai_family;
1346 activepars->address, activepars->port, (hints.ai_family == AF_INET) ? "IPv4":
1347 (hints.ai_family == AF_INET6) ? "IPv6" : "Unspecified");
1353 if (sock_initaddress(activepars->address, activepars->port, &hints, &addrinfo, errbuf, PCAP_ERRBUF_SIZE) == -1)
1369 activepars->address, activepars->port, (hints.ai_family == AF_INET) ? "IPv4":
1370 (hints
[all...]
/freebsd-current/sbin/hastd/
H A Dproto_tcp.c102 struct addrinfo hints; local
112 bzero(&hints, sizeof(hints));
113 hints.ai_flags = AI_ADDRCONFIG | AI_NUMERICSERV;
114 hints.ai_family = PF_UNSPEC;
115 hints.ai_socktype = SOCK_STREAM;
116 hints.ai_protocol = IPPROTO_TCP;
120 hints.ai_family = PF_INET;
123 hints.ai_family = PF_INET6;
174 error = getaddrinfo(iporhost, portstr, &hints,
[all...]
/freebsd-current/tools/tools/netrate/netsend/
H A Dnetsend.c285 struct addrinfo hints, *res, *ressave; local
292 memset(&hints, 0, sizeof(hints));
293 hints.ai_family = AF_UNSPEC;
295 if (getaddrinfo(argv[1], NULL, &hints, &res) != 0) {
/freebsd-current/lib/libpam/modules/pam_radius/
H A Dpam_radius.c85 struct addrinfo hints; local
111 memset(&hints, 0, sizeof(hints));
112 hints.ai_family = AF_INET;
113 if (getaddrinfo(nas_ipaddr, NULL, &hints, &res) == 0 &&
/freebsd-current/bin/cat/
H A Dcat.c439 struct addrinfo hints, *res, *res0; local
447 bzero(&hints, sizeof(hints));
448 hints.ai_family = AF_LOCAL;
453 error = cap_getaddrinfo(capnet, rpath, NULL, &hints, &res0);
/freebsd-current/contrib/telnet/telnet/
H A Dcommands.c2185 struct addrinfo hints, *res, *res0 = NULL, *src_res, *src_res0 = NULL;
2246 memset(&hints, 0, sizeof(hints));
2247 hints.ai_family = family;
2248 hints.ai_socktype = SOCK_STREAM;
2249 error = getaddrinfo(src_addr, 0, &hints, &src_res);
2251 hints.ai_flags = 0;
2252 error = getaddrinfo(src_addr, 0, &hints, &src_res);
2315 memset(&hints, 0, sizeof(hints));
2177 struct addrinfo hints, *res, *res0 = NULL, *src_res, *src_res0 = NULL; local
2858 struct addrinfo hints, *res; local
[all...]
/freebsd-current/contrib/ntp/ntpdc/
H A Dntpdc.c408 struct addrinfo hints, *ai = NULL; local
438 ZERO(hints);
439 hints.ai_family = ai_fam_templ;
440 hints.ai_protocol = IPPROTO_UDP;
441 hints.ai_socktype = SOCK_DGRAM;
442 hints.ai_flags = Z_AI_NUMERICHOST;
444 a_info = getaddrinfo(hname, service, &hints, &ai);
450 hints.ai_flags = AI_CANONNAME;
452 hints.ai_flags |= AI_ADDRCONFIG;
454 a_info = getaddrinfo(hname, service, &hints,
1465 struct addrinfo hints, *ai = NULL; local
[all...]
/freebsd-current/contrib/bearssl/samples/
H A Dclient_basic.c48 struct addrinfo hints, *si, *p; local
52 memset(&hints, 0, sizeof hints);
53 hints.ai_family = PF_UNSPEC;
54 hints.ai_socktype = SOCK_STREAM;
55 err = getaddrinfo(host, port, &hints, &si);
/freebsd-current/contrib/netbsd-tests/net/mcast/
H A Dmcast.c192 struct addrinfo hints, *ai0, *ai; local
195 memset(&hints, 0, sizeof(hints));
196 hints.ai_family = AF_UNSPEC;
197 hints.ai_socktype = SOCK_DGRAM;
198 e = getaddrinfo(host, port, &hints, &ai0);
/freebsd-current/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-current/libexec/phttpget/
H A Dphttpget.c292 struct addrinfo hints; /* Hints to getaddrinfo */ local
339 memset(&hints, 0, sizeof(hints));
340 hints.ai_family = PF_UNSPEC;
341 hints.ai_socktype = SOCK_STREAM;
343 env_HTTP_PROXY ? proxyport : "http", &hints, &res0);
/freebsd-current/tools/tools/nvmf/nvmfdd/
H A Dnvmfdd.c53 struct addrinfo hints, *ai, *list; local
56 memset(&hints, 0, sizeof(hints));
57 hints.ai_family = AF_UNSPEC;
58 hints.ai_protocol = IPPROTO_TCP;
59 error = getaddrinfo(address, port, &hints, &list);
/freebsd-current/sbin/nvmecontrol/
H A Dfabrics.c144 struct addrinfo hints, *ai, *list; local
147 memset(&hints, 0, sizeof(hints));
148 hints.ai_family = adrfam;
149 hints.ai_protocol = IPPROTO_TCP;
150 error = getaddrinfo(address, port, &hints, &list);
/freebsd-current/lib/libcasper/services/cap_net/
H A Dcap_net.c284 const struct addrinfo *hints, struct addrinfo **res)
299 if (hints != NULL) {
300 nvlist_add_number(nvl, "hints.ai_flags",
301 (uint64_t)hints->ai_flags);
302 nvlist_add_number(nvl, "hints.ai_family",
303 (uint64_t)hints->ai_family);
304 nvlist_add_number(nvl, "hints.ai_socktype",
305 (uint64_t)hints->ai_socktype);
306 nvlist_add_number(nvl, "hints.ai_protocol",
307 (uint64_t)hints
283 cap_getaddrinfo(cap_channel_t *chan, const char *hostname, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
959 struct addrinfo hints, *hintsp, *res, *cur; local
[all...]
/freebsd-current/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...]

Completed in 327 milliseconds

1234567891011>>