[PR #1305] [MERGED] Server async #2191

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

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/1305
Author: @djc
Created: 11/30/2020
Status: Merged
Merged: 12/9/2020
Merged by: @bluejekyll

Base: mainHead: server-async


📝 Commits (10+)

  • 5db0cb5 Push Arc<RwLock<>> into AuthorityObject impl
  • 057f81e Prepare Catalog RequestHandler impl for async
  • 1072a46 Test for the correct address, sent in a separate message
  • 1ac4d92 Use async/await for server request handler
  • 0fce03e Simplify unnecessary clone contraption
  • fbde51e Refactor lookup response handler code some more
  • 1342ebd Deduplicate update response sending code
  • 77e8efc Reorder update() code to isolate trait object handling
  • 1744062 Merge branch 'main' into server-async
  • fcf2ee8 Merge branch 'main' into server-async

📊 Changes

11 files changed (+387 additions, -734 deletions)

View changed files

📝 Cargo.lock (+3 -2)
📝 bin/src/named.rs (+6 -5)
📝 crates/server/Cargo.toml (+1 -0)
📝 crates/server/src/authority/authority_object.rs (+41 -24)
📝 crates/server/src/authority/catalog.rs (+280 -679)
📝 tests/integration-tests/tests/catalog_tests.rs (+10 -8)
📝 tests/integration-tests/tests/client_future_tests.rs (+13 -4)
📝 tests/integration-tests/tests/client_tests.rs (+9 -3)
📝 tests/integration-tests/tests/dnssec_client_handle_tests.rs (+5 -2)
📝 tests/integration-tests/tests/lookup_tests.rs (+17 -5)
📝 tests/integration-tests/tests/server_future_tests.rs (+2 -2)

📄 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/1305 **Author:** [@djc](https://github.com/djc) **Created:** 11/30/2020 **Status:** ✅ Merged **Merged:** 12/9/2020 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `main` ← **Head:** `server-async` --- ### 📝 Commits (10+) - [`5db0cb5`](https://github.com/hickory-dns/hickory-dns/commit/5db0cb5ef629ec4036f8bba1d63ddb2b447c5cc0) Push Arc<RwLock<>> into AuthorityObject impl - [`057f81e`](https://github.com/hickory-dns/hickory-dns/commit/057f81e0ed6de0b9d2e0092aca38b07657fa731b) Prepare Catalog RequestHandler impl for async - [`1072a46`](https://github.com/hickory-dns/hickory-dns/commit/1072a467dc4164c8b7db69b068c861812a297a7b) Test for the correct address, sent in a separate message - [`1ac4d92`](https://github.com/hickory-dns/hickory-dns/commit/1ac4d924848ed5b9c0f349bdbfbbd4f38ccf8a0f) Use async/await for server request handler - [`0fce03e`](https://github.com/hickory-dns/hickory-dns/commit/0fce03ed2d21cf1d7fef50a5a9636a369d172683) Simplify unnecessary clone contraption - [`fbde51e`](https://github.com/hickory-dns/hickory-dns/commit/fbde51e9dd0639135af569bba88359b47f286e7e) Refactor lookup response handler code some more - [`1342ebd`](https://github.com/hickory-dns/hickory-dns/commit/1342ebdcf0c360befa115db1f0150437ebe8027e) Deduplicate update response sending code - [`77e8efc`](https://github.com/hickory-dns/hickory-dns/commit/77e8efcc593f2da3f4e8e727faab2a241f104942) Reorder update() code to isolate trait object handling - [`1744062`](https://github.com/hickory-dns/hickory-dns/commit/174406279a6e1b8b0bb30f714afcd04e4a67ebe6) Merge branch 'main' into server-async - [`fcf2ee8`](https://github.com/hickory-dns/hickory-dns/commit/fcf2ee8c2126756d4545e79c2e261c7030fada29) Merge branch 'main' into server-async ### 📊 Changes **11 files changed** (+387 additions, -734 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+3 -2) 📝 `bin/src/named.rs` (+6 -5) 📝 `crates/server/Cargo.toml` (+1 -0) 📝 `crates/server/src/authority/authority_object.rs` (+41 -24) 📝 `crates/server/src/authority/catalog.rs` (+280 -679) 📝 `tests/integration-tests/tests/catalog_tests.rs` (+10 -8) 📝 `tests/integration-tests/tests/client_future_tests.rs` (+13 -4) 📝 `tests/integration-tests/tests/client_tests.rs` (+9 -3) 📝 `tests/integration-tests/tests/dnssec_client_handle_tests.rs` (+5 -2) 📝 `tests/integration-tests/tests/lookup_tests.rs` (+17 -5) 📝 `tests/integration-tests/tests/server_future_tests.rs` (+2 -2) </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 07:06:58 +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#2191
No description provided.