]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Mark "THROWAWAY" and "(DNSSEC) LAME" responses clearly as Unbound's
authorYorgos Thessalonikefs <yorgos@nlnetlabs.nl>
Tue, 30 Dec 2025 12:15:37 +0000 (13:15 +0100)
committerYorgos Thessalonikefs <yorgos@nlnetlabs.nl>
Tue, 30 Dec 2025 12:15:37 +0000 (13:15 +0100)
  categorization in the log output.

doc/Changelog
iterator/iterator.c

index 7ea887303b2ceeddb3d0c7971ba5ac04e18ee22a..2712544d771a77da942c11a344fd30280c12d5c9 100644 (file)
@@ -1,3 +1,7 @@
+30 December 2025: Yorgos
+       - Mark "THROWAWAY" and "(DNSSEC) LAME" responses clearly as Unbound's
+         categorization in the log output.
+
 24 December 2025: Yorgos
        - More specific wording in the unbound.conf man page for stub-first
          and forward-first options.
index 836cb36e0dcfe0a181c28b9b115f272992dc3a2f..5013c75adce9a68cc4efb02657d6ff3f31a23e69 100644 (file)
@@ -3603,7 +3603,7 @@ processQueryResponse(struct module_qstate* qstate, struct iter_qstate* iq,
                return next_state(iq, INIT_REQUEST_STATE);
        } else if(type == RESPONSE_TYPE_LAME) {
                /* Cache the LAMEness. */
-               verbose(VERB_DETAIL, "query response was %sLAME",
+               verbose(VERB_DETAIL, "query response was categorized as %sLAME",
                        dnsseclame?"DNSSEC ":"");
                if(!dname_subdomain_c(iq->qchase.qname, iq->dp->name)) {
                        log_err("mark lame: mismatch in qname and dpname");
@@ -3642,7 +3642,7 @@ processQueryResponse(struct module_qstate* qstate, struct iter_qstate* iq,
                 * In this case, the event is just sent directly back to 
                 * the QUERYTARGETS_STATE without resetting anything, 
                 * because, clearly, the next target must be tried. */
-               verbose(VERB_DETAIL, "query response was THROWAWAY");
+               verbose(VERB_DETAIL, "query response was categorized as THROWAWAY");
        } else {
                log_warn("A query response came back with an unknown type: %d",
                        (int)type);