mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 03:05:51 +03:00
[PR #1710] [MERGED] A Trust DNS based Recursor #2538
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#2538
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/1710
Author: @bluejekyll
Created: 5/22/2022
Status: ✅ Merged
Merged: 8/24/2022
Merged by: @bluejekyll
Base:
main← Head:recursor📝 Commits (10+)
f75617eadd the recursor crateba20ec6remove DnsRequestOptions from AsyncResolver::lookup61d004edeclare initial recursive lookupa6bd76eupdate recursor to use clap1fcd7dfadjust interfaces for recursor27e3eddinitial layout of recursor427adffadd NS search methodeb3443ainitial recursive resolution working78bd2cbcleanup some inaccurate documentation69fde60add initial RecursiveAuthority📊 Changes
59 files changed (+1964 additions, -135 deletions)
View changed files
📝
CHANGELOG.md(+1 -0)📝
Cargo.lock(+38 -0)📝
Cargo.toml(+1 -0)📝
Makefile.toml(+1 -1)📝
bin/Cargo.toml(+9 -2)📝
bin/src/named.rs(+11 -1)📝
crates/proto/src/op/header.rs(+2 -1)📝
crates/proto/src/op/message.rs(+19 -6)📝
crates/proto/src/rr/record_data.rs(+5 -0)📝
crates/proto/src/xfer/dns_handle.rs(+1 -1)📝
crates/proto/src/xfer/dns_request.rs(+4 -2)📝
crates/proto/src/xfer/dns_response.rs(+3 -6)📝
crates/recursor/Cargo.toml(+23 -25)➕
crates/recursor/LICENSE-APACHE(+202 -0)➕
crates/recursor/LICENSE-MIT(+20 -0)➕
crates/recursor/README.md(+13 -0)➕
crates/recursor/src/error.rs(+167 -0)➕
crates/recursor/src/lib.rs(+37 -0)➕
crates/recursor/src/recursor.rs(+459 -0)➕
crates/recursor/src/recursor_pool.rs(+121 -0)...and 39 more files
📄 Description
This is pretty rough right now, probably a lot of work to do, but it does work for some basic queries, for example:
cargo run --all-features --bin recurse -- --debug -n 192.5.5.241:53 -t A www.example.com.need some cleanup on output, but this is the current result:
I don't think this is ready for review yet, lots to cleanup.
fixes: #1440
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.