aboutsummaryrefslogtreecommitdiff
path: root/iterator/iter_utils.h
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2015-01-02 17:35:29 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2015-01-02 17:35:29 +0000
commit7954be7fa5ea70de36aacebb8bcca2a70af709f4 (patch)
treeb839bbb75392ad4c301a0393b3ca49fe155c5740 /iterator/iter_utils.h
parent7f563e614fb9a8ce7c8904a3ad346b7e38238339 (diff)
downloadsrc-7954be7fa5ea70de36aacebb8bcca2a70af709f4.tar.gz
src-7954be7fa5ea70de36aacebb8bcca2a70af709f4.zip
import unbound 1.5.1vendor/unbound/1.5.1
Notes
Notes: svn path=/vendor/unbound/dist/; revision=276544 svn path=/vendor/unbound/1.5.1/; revision=276545; tag=vendor/unbound/1.5.1
Diffstat (limited to 'iterator/iter_utils.h')
-rw-r--r--iterator/iter_utils.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/iterator/iter_utils.h b/iterator/iter_utils.h
index abdc68f3cd44..d7c2b68afa2d 100644
--- a/iterator/iter_utils.h
+++ b/iterator/iter_utils.h
@@ -124,6 +124,7 @@ struct dns_msg* dns_copy_msg(struct dns_msg* from, struct regional* regional);
* @param pside: true if dp is parentside, thus message is 'fresh' and NS
* can be prefetch-updates.
* @param region: to copy modified (cache is better) rrs back to.
+ * @param flags: with BIT_CD for dns64 AAAA translated queries.
* @return void, because we are not interested in alloc errors,
* the iterator and validator can operate on the results in their
* scratch space (the qstate.region) and are not dependent on the cache.
@@ -132,7 +133,7 @@ struct dns_msg* dns_copy_msg(struct dns_msg* from, struct regional* regional);
*/
void iter_dns_store(struct module_env* env, struct query_info* qinf,
struct reply_info* rep, int is_referral, time_t leeway, int pside,
- struct regional* region);
+ struct regional* region, uint16_t flags);
/**
* Select randomly with n/m probability.