[PR #136] [MERGED] A trust-dns resolver #1264

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

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/136
Author: @bluejekyll
Created: 5/23/2017
Status: Merged
Merged: 6/26/2017
Merged by: @bluejekyll

Base: masterHead: bfry/resolver


📝 Commits (10+)

  • ab5626b init resolver
  • 06ff521 functional, very basic Resolver for TRust-DNS
  • f988a88 add a synchronous resolver
  • 57a6848 fleshing out the name_server conn for conn_pool
  • bd2322c collect connection stats on NameServer
  • 78cf558 retry and tracking of stats for connections
  • 12be436 resolver pool, with failure check and tests
  • 248f8ca add timeout where needed
  • 7bd0c14 add some resolver examples
  • dee320b cleanup a bit for an initial release

📊 Changes

21 files changed (+1143 additions, -12 deletions)

View changed files

📝 .gitignore (+2 -0)
📝 CHANGELOG.md (+5 -0)
📝 Cargo.lock (+14 -4)
📝 Cargo.toml (+1 -1)
📝 appveyor.yml (+2 -0)
📝 client/Cargo.toml (+2 -2)
📝 client/src/client/client_future.rs (+2 -2)
📝 client/src/error/client_error.rs (+9 -0)
📝 client/src/error/parse_error.rs (+6 -0)
📝 client/src/udp/udp_stream.rs (+1 -0)
📝 native-tls/Cargo.toml (+1 -1)
resolver/Cargo.toml (+50 -0)
resolver/build.rs (+32 -0)
resolver/src/config.rs (+110 -0)
resolver/src/lib.rs (+55 -0)
resolver/src/lookup_ip.rs (+188 -0)
resolver/src/name_server_pool.rs (+507 -0)
resolver/src/resolver.rs (+81 -0)
resolver/src/resolver_future.rs (+73 -0)
📝 rustls/Cargo.toml (+1 -1)

...and 1 more files

📄 Description

The beginning of a TRust-DNS resolver.


🔄 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/136 **Author:** [@bluejekyll](https://github.com/bluejekyll) **Created:** 5/23/2017 **Status:** ✅ Merged **Merged:** 6/26/2017 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `master` ← **Head:** `bfry/resolver` --- ### 📝 Commits (10+) - [`ab5626b`](https://github.com/hickory-dns/hickory-dns/commit/ab5626b8eb8f6890de9eceaebcc1fe54e9128dc5) init resolver - [`06ff521`](https://github.com/hickory-dns/hickory-dns/commit/06ff5219f6885e71ec53684ef4251af29026b1ad) functional, very basic Resolver for TRust-DNS - [`f988a88`](https://github.com/hickory-dns/hickory-dns/commit/f988a8856854e612ea7f8d45411cad5abd937b37) add a synchronous resolver - [`57a6848`](https://github.com/hickory-dns/hickory-dns/commit/57a6848236bc11148892bbd28724a9d5f1973b89) fleshing out the name_server conn for conn_pool - [`bd2322c`](https://github.com/hickory-dns/hickory-dns/commit/bd2322c3a9496ae3c7618785b42727ef4d6b379e) collect connection stats on NameServer - [`78cf558`](https://github.com/hickory-dns/hickory-dns/commit/78cf558848b8e464510469c9d577efeb371e65a7) retry and tracking of stats for connections - [`12be436`](https://github.com/hickory-dns/hickory-dns/commit/12be4366144754e6a86c91e1aba9f0f105cfabd1) resolver pool, with failure check and tests - [`248f8ca`](https://github.com/hickory-dns/hickory-dns/commit/248f8ca8283684ce738bcf9b104345a3ed87ca02) add timeout where needed - [`7bd0c14`](https://github.com/hickory-dns/hickory-dns/commit/7bd0c14bfa9138c5fea3aea4f82170e43662b5e0) add some resolver examples - [`dee320b`](https://github.com/hickory-dns/hickory-dns/commit/dee320bf65ce64bd1848caae6353f0d9e72ba002) cleanup a bit for an initial release ### 📊 Changes **21 files changed** (+1143 additions, -12 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+2 -0) 📝 `CHANGELOG.md` (+5 -0) 📝 `Cargo.lock` (+14 -4) 📝 `Cargo.toml` (+1 -1) 📝 `appveyor.yml` (+2 -0) 📝 `client/Cargo.toml` (+2 -2) 📝 `client/src/client/client_future.rs` (+2 -2) 📝 `client/src/error/client_error.rs` (+9 -0) 📝 `client/src/error/parse_error.rs` (+6 -0) 📝 `client/src/udp/udp_stream.rs` (+1 -0) 📝 `native-tls/Cargo.toml` (+1 -1) ➕ `resolver/Cargo.toml` (+50 -0) ➕ `resolver/build.rs` (+32 -0) ➕ `resolver/src/config.rs` (+110 -0) ➕ `resolver/src/lib.rs` (+55 -0) ➕ `resolver/src/lookup_ip.rs` (+188 -0) ➕ `resolver/src/name_server_pool.rs` (+507 -0) ➕ `resolver/src/resolver.rs` (+81 -0) ➕ `resolver/src/resolver_future.rs` (+73 -0) 📝 `rustls/Cargo.toml` (+1 -1) _...and 1 more files_ </details> ### 📄 Description The beginning of a TRust-DNS resolver. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 01:57:00 +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#1264
No description provided.