Lines Matching defs:queries
217 /* The default maximum number of iterative queries to allow before giving up. */
375 ISC_LIST(resquery_t) queries;
447 * Number of queries that reference this context.
1009 ISC_LIST_UNLINK(fctx->queries, query, link);
1198 * Don't adjust timeout on EDNS queries unless we have
1292 ISC_LIST_UNLINK(fctx->queries, query, link);
1304 REQUIRE(ISC_LIST_EMPTY(fctx->queries));
1345 ISC_LIST(resquery_t) queries;
1349 ISC_LIST_INIT(queries);
1352 * Move the queries to a local list so we can cancel
1356 ISC_LIST_MOVE(queries, fctx->queries);
1359 for (query = ISC_LIST_HEAD(queries); query != NULL; query = next_query)
1366 * then it will try to unlink it from fctx->queries.
1368 ISC_LIST_UNLINK(queries, query, link);
1694 * there still are any outstanding queries attached to the
1925 * A forwarder needs to make multiple queries. Give it at least
2109 ISC_LIST_APPEND(fctx->queries, query, link);
2163 ISC_LIST_UNLINK(fctx->queries, query, link);
3568 * To avoid sending out a flood of queries likely to
3986 "exceeded max queries resolving '%s' "
4073 * doesn't cause additional queries to resolve the target of the
4100 "exceeded max queries resolving '%s'",
4295 REQUIRE(ISC_LIST_EMPTY(fctx->queries));
4557 ISC_LIST_INIT(fctx->queries);
4668 * Exempt prefetch queries from the fetches-per-zone quota check
4672 * Are there too many simultaneous queries for this domain?
4984 * destroyed (i.e., no queries waiting for it and no pending ADB finds).
5616 * queries on the fetch context so the name has to be
7277 * Handles responses received in response to iterative queries sent by
8468 * Handle responses to queries of type ANY. Scan the answer section,
10866 dns_resolver_setmaxqueries(dns_resolver_t *resolver, unsigned int queries) {
10868 resolver->maxqueries = queries;