feat(question): name SVCB/LOC/NAPTR record types in logs #120
Reference in New Issue
Block a user
Delete Branch "feat/named-record-types"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
SVCB(64),LOC(29), andNAPTR(35) to theQueryTypeenum so logs print the type name instead ofUNKNOWN(N).SVCB_QTYPE: u16 = 64const introduced in #119 withQueryType::SVCB.to_num(), matching the existing HTTPS path.Why
Issue #114 reports lines like
UNKNOWN(64) _dns.resolver.arpaflooding the log. That's RFC 9462 DDR-aware clients probing for encrypted-DNS upgrade — real traffic, not noise. LOC and NAPTR show up in the same user's logs.Test plan
cargo test --lib— 315 passedcargo fmt