[PR #674] [MERGED] Forwarder with trust-dns-resolver #1595

Closed
opened 2026-03-16 02:14:54 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/674
Author: @bluejekyll
Created: 1/27/2019
Status: Merged
Merged: 3/24/2019
Merged by: @bluejekyll

Base: masterHead: forwarder-with-resolver


📝 Commits (9)

  • a94b992 refactor Lookup to store Records, not RData
  • b99c0c6 refactor in-memory components of SqliteAuthority to InMemoryAuthority
  • 221784e add InMemoryAuthority::inner_soa for serial mgmt
  • 2db9298 Add ForwardAuthority for integration with Resolver
  • 7add1c7 remove RecordType from Record::from_rdata
  • 1caa901 Create object safe Authority
  • e808ea9 Futurize the RequestHandler and use AsyncResolver
  • 46806cd refactor in-memory components of file authority to InMemoryAuthority
  • 8343a69 Cleanup LookupError

📊 Changes

65 files changed (+3992 additions, -2500 deletions)

View changed files

📝 CHANGELOG.md (+13 -5)
📝 Cargo.lock (+2 -0)
📝 crates/client/src/rr/lower_name.rs (+7 -1)
📝 crates/proto/src/op/response_code.rs (+59 -60)
📝 crates/proto/src/rr/domain/name.rs (+10 -17)
📝 crates/proto/src/rr/resource.rs (+2 -3)
📝 crates/proto/src/udp/udp_client_stream.rs (+1 -2)
📝 crates/resolver/CHANGELOG.md (+3 -0)
📝 crates/resolver/src/async_resolver/background.rs (+13 -8)
📝 crates/resolver/src/dns_lru.rs (+84 -44)
📝 crates/resolver/src/dns_sd.rs (+4 -3)
📝 crates/resolver/src/hosts.rs (+6 -3)
📝 crates/resolver/src/lookup.rs (+60 -36)
📝 crates/resolver/src/lookup_ip.rs (+39 -22)
📝 crates/resolver/src/lookup_state.rs (+11 -16)
📝 crates/server/Cargo.toml (+6 -4)
📝 crates/server/README.md (+16 -0)
📝 crates/server/src/authority/auth_lookup.rs (+63 -84)
📝 crates/server/src/authority/authority.rs (+28 -55)
crates/server/src/authority/authority_object.rs (+300 -0)

...and 45 more files

📄 Description

Fixes: #55
fyi: #483
Fixes: #531


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hickory-dns/hickory-dns/pull/674 **Author:** [@bluejekyll](https://github.com/bluejekyll) **Created:** 1/27/2019 **Status:** ✅ Merged **Merged:** 3/24/2019 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `master` ← **Head:** `forwarder-with-resolver` --- ### 📝 Commits (9) - [`a94b992`](https://github.com/hickory-dns/hickory-dns/commit/a94b992b10941877c1555c6d6a512fc28a00a11e) refactor Lookup to store Records, not RData - [`b99c0c6`](https://github.com/hickory-dns/hickory-dns/commit/b99c0c6a4a3cad8268b351662e27f9311dd15344) refactor in-memory components of SqliteAuthority to InMemoryAuthority - [`221784e`](https://github.com/hickory-dns/hickory-dns/commit/221784eec5196e21b1bd958f6056945d1ad4ba9e) add InMemoryAuthority::inner_soa for serial mgmt - [`2db9298`](https://github.com/hickory-dns/hickory-dns/commit/2db92987ba2fbf99e22c4c8f4495050336e94301) Add ForwardAuthority for integration with Resolver - [`7add1c7`](https://github.com/hickory-dns/hickory-dns/commit/7add1c7a3e5e536664ec77c279949ada860dfd99) remove RecordType from Record::from_rdata - [`1caa901`](https://github.com/hickory-dns/hickory-dns/commit/1caa9012f4a851012d314c5f3cdf634630e6b321) Create object safe Authority - [`e808ea9`](https://github.com/hickory-dns/hickory-dns/commit/e808ea90b5cfc6a73738f1d08daffe6658808044) Futurize the RequestHandler and use AsyncResolver - [`46806cd`](https://github.com/hickory-dns/hickory-dns/commit/46806cde2036bb0d4019ad37df1c4cae9b7e20cf) refactor in-memory components of file authority to InMemoryAuthority - [`8343a69`](https://github.com/hickory-dns/hickory-dns/commit/8343a698020f52c7bfac086eadc97dc559510adf) Cleanup LookupError ### 📊 Changes **65 files changed** (+3992 additions, -2500 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+13 -5) 📝 `Cargo.lock` (+2 -0) 📝 `crates/client/src/rr/lower_name.rs` (+7 -1) 📝 `crates/proto/src/op/response_code.rs` (+59 -60) 📝 `crates/proto/src/rr/domain/name.rs` (+10 -17) 📝 `crates/proto/src/rr/resource.rs` (+2 -3) 📝 `crates/proto/src/udp/udp_client_stream.rs` (+1 -2) 📝 `crates/resolver/CHANGELOG.md` (+3 -0) 📝 `crates/resolver/src/async_resolver/background.rs` (+13 -8) 📝 `crates/resolver/src/dns_lru.rs` (+84 -44) 📝 `crates/resolver/src/dns_sd.rs` (+4 -3) 📝 `crates/resolver/src/hosts.rs` (+6 -3) 📝 `crates/resolver/src/lookup.rs` (+60 -36) 📝 `crates/resolver/src/lookup_ip.rs` (+39 -22) 📝 `crates/resolver/src/lookup_state.rs` (+11 -16) 📝 `crates/server/Cargo.toml` (+6 -4) 📝 `crates/server/README.md` (+16 -0) 📝 `crates/server/src/authority/auth_lookup.rs` (+63 -84) 📝 `crates/server/src/authority/authority.rs` (+28 -55) ➕ `crates/server/src/authority/authority_object.rs` (+300 -0) _...and 45 more files_ </details> ### 📄 Description Fixes: #55 fyi: #483 Fixes: #531 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 02:14:54 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hickory-dns#1595
No description provided.