mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 03:05:51 +03:00
[PR #2113] [CLOSED] Initial chained store and blocklist authority implementation #2819
Labels
No labels
blocked
breaking-change
bug
bug:critical
bug:tests
cleanup
compliance
compliance
compliance
crate:all
crate:client
crate:native-tls
crate:proto
crate:recursor
crate:resolver
crate:resolver
crate:rustls
crate:server
crate:util
dependencies
docs
duplicate
easy
easy
enhance
enhance
enhance
feature:dns-over-https
feature:dns-over-quic
feature:dns-over-tls
feature:dnsssec
feature:global_lb
feature:mdns
feature:tsig
features:edns
has workaround
ops
perf
platform:WASM
platform:android
platform:fuchsia
platform:linux
platform:macos
platform:windows
pull-request
question
test
tools
tools
trust
unclear
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hickory-dns#2819
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
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?
📋 Pull Request Information
Original PR: https://github.com/hickory-dns/hickory-dns/pull/2113
Author: @marcus0x62
Created: 12/19/2023
Status: ❌ Closed
Base:
main← Head:main📝 Commits (5)
c158ad9Fix main-block file and sqlite configuration and Clippy warnings for the blocklist authority46b9828Tree fix22f3911Test fixes; rename future argument in send_forwarded_response and send_authoritative_resposne4d1c480Minor cleanup from rebase87d8311Simplified get_wildcards. Re-added missing blocklist test files.📊 Changes
37 files changed (+1094 additions, -291 deletions)
View changed files
📝
Cargo.toml(+0 -1)📝
bin/Cargo.toml(+1 -0)📝
bin/src/hickory-dns.rs(+146 -103)📝
crates/server/Cargo.toml(+2 -0)📝
crates/server/src/authority/authority.rs(+25 -8)📝
crates/server/src/authority/authority_object.rs(+23 -9)📝
crates/server/src/authority/catalog.rs(+150 -104)📝
crates/server/src/config/mod.rs(+2 -2)📝
crates/server/src/server/request_handler.rs(+1 -1)➕
crates/server/src/store/blocklist/authority.rs(+413 -0)➕
crates/server/src/store/blocklist/config.rs(+40 -0)➕
crates/server/src/store/blocklist/mod.rs(+16 -0)📝
crates/server/src/store/config.rs(+22 -0)📝
crates/server/src/store/file/authority.rs(+4 -2)📝
crates/server/src/store/forwarder/authority.rs(+6 -3)📝
crates/server/src/store/in_memory/authority.rs(+6 -5)📝
crates/server/src/store/mod.rs(+2 -0)📝
crates/server/src/store/recursor/authority.rs(+3 -2)📝
crates/server/src/store/sqlite/authority.rs(+8 -3)📝
crates/server/tests/authority_battery/basic.rs(+39 -12)...and 17 more files
📄 Description
Hi. This PR contains an implementation of the chained store concept as well as a blocklist authority as discussed in issue #13. There is an example config file in tests/test-data/test_configs/example_chained_recursor.toml that shows how to configure the two features.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.