#include "util/regional.h"
#include "util/net_help.h"
#include "util/config_file.h"
+#include "util/data/dname.h"
#include "util/data/msgreply.h"
#include "util/data/msgencode.h"
#include "services/cache/dns.h"
/* copy the hash info into the clear buffer */
if(clen + qinfo->qname_len < sizeof(clear)) {
memmove(clear+clen, qinfo->qname, qinfo->qname_len);
+ query_dname_tolower(clear+clen);
clen += qinfo->qname_len;
}
if(clen + 4 < sizeof(clear)) {
+24 February 2025: Yorgos
+ - Fix hash calculation for cachedb to ignore case. Previously, cached
+ records there were only relevant for same case queries (if not
+ already in Unbound's internal cache).
+
19 February 2025: Yorgos
- Fix static analysis report about unhandled EOF on error conditions
when reading anchor key files.