Searched defs:hints (Results 1 - 10 of 10) sorted by relevance

/bind-9.6-ESV-R11/lib/bind9/
H A Dgetaddresses.c59 struct addrinfo *ai = NULL, *tmpai, hints; local
136 memset(&hints, 0, sizeof(hints));
138 hints.ai_family = PF_INET;
140 hints.ai_family = PF_INET6;
142 hints.ai_family = PF_UNSPEC;
144 hints.ai_flags = AI_ADDRCONFIG;
147 hints.ai_socktype = SOCK_STREAM;
151 result = getaddrinfo(hostname, NULL, &hints, &ai);
162 if ((hints
[all...]
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/tools/runidn/
H A Dstub.c346 const struct addrinfo *hints, struct addrinfo **res)
349 const struct addrinfo *hints, struct addrinfo **res);
354 return ((*fp)(nodename, servname, hints, res));
345 idn_stub_getaddrinfo(const char *nodename, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
H A Dresolver.c960 const struct addrinfo *hints, struct addrinfo **res)
968 return (REAL(getaddrinfo)(nodename, servname, hints, res));
980 err = REAL(getaddrinfo)(nodename, servname, hints, &aip);
959 getaddrinfo(const char *nodename, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
/bind-9.6-ESV-R11/lib/dns/
H A Drootns.c227 * Load the hints from the specified filename.
251 "extra data in root hints '%s'",
289 "checkhints%s%s: %s/%s (%s) missing from hints",
295 "in hints", sep, viewname, namebuf, typebuf,
322 check_address_records(dns_view_t *view, dns_db_t *hints, dns_db_t *db, argument
336 hresult = dns_db_find(hints, name, NULL, dns_rdatatype_a, 0,
378 hresult = dns_db_find(hints, name, NULL, dns_rdatatype_aaaa, 0,
422 dns_root_checkhints(dns_view_t *view, dns_db_t *hints, dns_db_t *db) { argument
432 REQUIRE(hints != NULL);
449 result = dns_db_find(hints, dns_rootnam
[all...]
H A Dview.c132 view->hints = NULL;
289 if (view->hints != NULL)
290 dns_db_detach(&view->hints);
658 dns_view_sethints(dns_view_t *view, dns_db_t *hints) { argument
661 REQUIRE(view->hints == NULL);
662 REQUIRE(dns_db_iszone(hints));
664 dns_db_attach(hints, &view->hints);
860 if (result == ISC_R_NOTFOUND && use_hints && view->hints != NULL) {
871 result = dns_db_find(view->hints, nam
[all...]
/bind-9.6-ESV-R11/bin/check/
H A Dcheck-tool.c185 struct addrinfo hints, *ai, *cur; local
203 memset(&hints, 0, sizeof(hints));
204 hints.ai_flags = AI_CANONNAME;
205 hints.ai_family = PF_UNSPEC;
206 hints.ai_socktype = SOCK_STREAM;
207 hints.ai_protocol = IPPROTO_TCP;
217 result = getaddrinfo(namebuf, NULL, &hints, &ai);
385 struct addrinfo hints, *ai, *cur; local
392 memset(&hints,
470 struct addrinfo hints, *ai, *cur; local
[all...]
/bind-9.6-ESV-R11/lib/dns/include/dns/
H A Dview.h34 * "hints" information.
94 dns_db_t * hints; member in struct:dns_view
331 dns_view_sethints(dns_view_t *view, dns_db_t *hints);
333 * Set the view's hints database.
337 *\li 'view' is a valid, unfrozen view, whose hints database has not been
340 *\li 'hints' is a valid zone database.
344 * \li The hints database of 'view' is 'hints'.
429 *\li If 'use_hints' is ISC_TRUE, and the view has a hints database, then
430 * it will be searched last. If the answer is found in the hints
[all...]
/bind-9.6-ESV-R11/lib/lwres/
H A Dgetaddrinfo.c52 * hints is an optional pointer to a struct addrinfo. This structure can
53 * be used to provide hints concerning the type of socket that the caller
55 * structure elements in *hints:
98 * All other elements of the struct addrinfo passed via hints must be
101 * A hints of NULL is treated as if the caller provided a struct addrinfo
175 const struct addrinfo *hints, struct addrinfo **res)
189 if (hints != NULL) {
190 if ((hints->ai_flags & ~(ISC_AI_MASK)) != 0)
192 if (hints->ai_addrlen || hints
174 lwres_getaddrinfo(const char *hostname, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
[all...]
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/wsock/wsock20/
H A Ddllfunc.c493 const struct my_addrinfo *hints, struct my_addrinfo **res)
507 err = _org_getaddrinfo(nodename, servname, hints, res);
516 err = _org_getaddrinfo(nodename, servname, hints, &aip);
492 getaddrinfo(const char *nodename, const char *servname, const struct my_addrinfo *hints, struct my_addrinfo **res) argument
/bind-9.6-ESV-R11/contrib/queryperf/
H A Dqueryperf.c414 struct addrinfo hints, *res; local
423 memset(&hints, 0, sizeof(hints));
424 hints.ai_family = family;
425 hints.ai_socktype = SOCK_DGRAM;
426 hints.ai_protocol = proto->p_proto;
428 &hints, &res)) != 0) {
769 struct addrinfo hints, *res; local
771 memset(&hints, 0, sizeof(hints));
[all...]

Completed in 234 milliseconds