[PR #183] [MERGED] Generic lookup for Resolver #1290

Closed
opened 2026-03-16 01:58:21 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/183
Author: @bluejekyll
Created: 9/5/2017
Status: Merged
Merged: 9/11/2017
Merged by: @bluejekyll

Base: masterHead: generic-lookup


📝 Commits (10+)

  • 0ccb688 refactor lookup types and cache
  • d72a132 restructure cache for RData storage
  • babccbb add macros for all supported query types
  • 9c362ba remove &mut from Resolver interfaces
  • 4094b05 update Changelog
  • 1056841 bump all necessary versions
  • 4a0165c update Readme and compile error on windows for system_conf
  • 5207bba add NxDomain caching
  • 5c55d10 rename lru module and cleanup warnings
  • 080d9fc add DnsLru back without inner mutex

📊 Changes

41 files changed (+2801 additions, -1700 deletions)

View changed files

📝 CHANGELOG.md (+7 -0)
📝 Cargo.lock (+13 -14)
📝 client/Cargo.toml (+1 -2)
📝 client/src/client/client_future.rs (+166 -132)
📝 client/src/client/memoize_client_handle.rs (+19 -25)
📝 client/src/client/retry_client_handle.rs (+41 -25)
📝 client/src/client/secure_client_handle.rs (+178 -129)
📝 client/src/dnskey_to_pem.rs (+48 -34)
📝 client/src/lib.rs (+18 -18)
📝 client/src/op/query.rs (+26 -2)
📝 client/src/op/response_code.rs (+9 -0)
📝 client/src/rr/dns_class.rs (+21 -10)
📝 client/src/rr/record_data.rs (+10 -1)
📝 client/src/rr/record_type.rs (+42 -28)
📝 client/src/serialize/txt/master.rs (+42 -20)
📝 client/src/tcp/tcp_stream.rs (+91 -84)
📝 client/src/tls/tests.rs (+26 -27)
📝 client/src/tls/tls_stream.rs (+80 -61)
📝 client/src/udp/udp_stream.rs (+55 -33)
📝 native-tls/src/tests.rs (+81 -69)

...and 21 more files

📄 Description

No description provided


🔄 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/183 **Author:** [@bluejekyll](https://github.com/bluejekyll) **Created:** 9/5/2017 **Status:** ✅ Merged **Merged:** 9/11/2017 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `master` ← **Head:** `generic-lookup` --- ### 📝 Commits (10+) - [`0ccb688`](https://github.com/hickory-dns/hickory-dns/commit/0ccb688ede766a4345d3676d4dcd9e15abd7459a) refactor lookup types and cache - [`d72a132`](https://github.com/hickory-dns/hickory-dns/commit/d72a132fe6fce580b186f1ee31ceafa47d76250c) restructure cache for RData storage - [`babccbb`](https://github.com/hickory-dns/hickory-dns/commit/babccbb9bc6b4d8e0605e85b03ba26f95b146007) add macros for all supported query types - [`9c362ba`](https://github.com/hickory-dns/hickory-dns/commit/9c362ba05578f0052e5c488efe983fc8f8bca5bf) remove &mut from Resolver interfaces - [`4094b05`](https://github.com/hickory-dns/hickory-dns/commit/4094b052680957908e70090915d7e6b2b7974a37) update Changelog - [`1056841`](https://github.com/hickory-dns/hickory-dns/commit/1056841409a0656ec8624b1d3bb54ebe9a1a375f) bump all necessary versions - [`4a0165c`](https://github.com/hickory-dns/hickory-dns/commit/4a0165cc0c4fcd5c3740b0a6af26631f15b2369e) update Readme and compile error on windows for system_conf - [`5207bba`](https://github.com/hickory-dns/hickory-dns/commit/5207bbac908071e6f182b29c1ce6575065a7dda1) add NxDomain caching - [`5c55d10`](https://github.com/hickory-dns/hickory-dns/commit/5c55d10859d8061fd931a22f756723b39ebe6da5) rename lru module and cleanup warnings - [`080d9fc`](https://github.com/hickory-dns/hickory-dns/commit/080d9fcd8ed849b956c80a3933c3b8b466e72ecb) add DnsLru back without inner mutex ### 📊 Changes **41 files changed** (+2801 additions, -1700 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+7 -0) 📝 `Cargo.lock` (+13 -14) 📝 `client/Cargo.toml` (+1 -2) 📝 `client/src/client/client_future.rs` (+166 -132) 📝 `client/src/client/memoize_client_handle.rs` (+19 -25) 📝 `client/src/client/retry_client_handle.rs` (+41 -25) 📝 `client/src/client/secure_client_handle.rs` (+178 -129) 📝 `client/src/dnskey_to_pem.rs` (+48 -34) 📝 `client/src/lib.rs` (+18 -18) 📝 `client/src/op/query.rs` (+26 -2) 📝 `client/src/op/response_code.rs` (+9 -0) 📝 `client/src/rr/dns_class.rs` (+21 -10) 📝 `client/src/rr/record_data.rs` (+10 -1) 📝 `client/src/rr/record_type.rs` (+42 -28) 📝 `client/src/serialize/txt/master.rs` (+42 -20) 📝 `client/src/tcp/tcp_stream.rs` (+91 -84) 📝 `client/src/tls/tests.rs` (+26 -27) 📝 `client/src/tls/tls_stream.rs` (+80 -61) 📝 `client/src/udp/udp_stream.rs` (+55 -33) 📝 `native-tls/src/tests.rs` (+81 -69) _...and 21 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 01:58:21 +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#1290
No description provided.