Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enhancement(dnstap source): add EDE code 30 to known EDE codes #21743

Merged
merged 2 commits into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelog.d/21743_add_ede_code_30.enhancement.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
EDE code 30 (Invalid Query Type) (added in https://datatracker.ietf.org/doc/draft-ietf-dnsop-compact-denial-of-existence/04/) has been added to recognized EDE codes and has correct `purpose` attached to it.

authors: esensar
1 change: 1 addition & 0 deletions lib/dnsmsg-parser/src/ede.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ impl EDE {
27 => Some("Unsupported NSEC3 Iterations Value"),
28 => Some("Unable to conform to policy"),
29 => Some("Synthesized"),
30 => Some("Invalid Query Type"),
_ => None,
}
}
Expand Down
Loading