mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-24 00:29:58 -05:00
- Fix harden-unverified-glue for AAAA cache_fill_missing lookups.
This commit is contained in:
parent
1b7e14dc39
commit
bd1813b126
2 changed files with 2 additions and 1 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
11 October 2024: Wouter
|
11 October 2024: Wouter
|
||||||
- Fix to disable detection of quic configured ports when quic is
|
- Fix to disable detection of quic configured ports when quic is
|
||||||
not compiled in.
|
not compiled in.
|
||||||
|
- Fix harden-unverified-glue for AAAA cache_fill_missing lookups.
|
||||||
|
|
||||||
10 October 2024: Wouter
|
10 October 2024: Wouter
|
||||||
- Fix cookie_file test sporadic fails for time change during
|
- Fix cookie_file test sporadic fails for time change during
|
||||||
|
|
|
||||||
2
services/cache/dns.c
vendored
2
services/cache/dns.c
vendored
|
|
@ -398,7 +398,7 @@ cache_fill_missing(struct module_env* env, uint16_t qclass,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
akey = rrset_cache_lookup(env->rrset_cache, ns->name,
|
akey = rrset_cache_lookup(env->rrset_cache, ns->name,
|
||||||
ns->namelen, LDNS_RR_TYPE_AAAA, qclass, 0, now, 0);
|
ns->namelen, LDNS_RR_TYPE_AAAA, qclass, flags, now, 0);
|
||||||
if(akey) {
|
if(akey) {
|
||||||
if(!delegpt_add_rrset_AAAA(dp, region, akey, ns->lame,
|
if(!delegpt_add_rrset_AAAA(dp, region, akey, ns->lame,
|
||||||
NULL)) {
|
NULL)) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue