mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-01-27 08:59:19 -05:00
- Fix qname minimisation to send AAAA queries at zonecut like type A.
git-svn-id: file:///svn/unbound/trunk@4402 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
05e3539856
commit
f3304d408c
2 changed files with 3 additions and 1 deletions
|
|
@ -1,5 +1,6 @@
|
|||
13 November 2017: Wouter
|
||||
- Fix #2801: Install libunbound.pc.
|
||||
- Fix qname minimisation to send AAAA queries at zonecut like type A.
|
||||
|
||||
7 November 2017: Wouter
|
||||
- Fix #2492: Documentation libunbound.
|
||||
|
|
|
|||
|
|
@ -2154,7 +2154,8 @@ processQueryTargets(struct module_qstate* qstate, struct iter_qstate* iq,
|
|||
}
|
||||
if(labdiff < 1 || (labdiff < 2
|
||||
&& (iq->qchase.qtype == LDNS_RR_TYPE_DS
|
||||
|| iq->qchase.qtype == LDNS_RR_TYPE_A)))
|
||||
|| iq->qchase.qtype == LDNS_RR_TYPE_A
|
||||
|| iq->qchase.qtype == LDNS_RR_TYPE_AAAA)))
|
||||
/* Stop minimising this query, resolve "as usual" */
|
||||
iq->minimisation_state = DONOT_MINIMISE_STATE;
|
||||
else if(!qstate->no_cache_lookup) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue