[PR #70] [MERGED] Bfry/server future impl #1217

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

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/70
Author: @bluejekyll
Created: 11/24/2016
Status: Merged
Merged: 11/24/2016
Merged by: @bluejekyll

Base: masterHead: bfry/server_future_impl


📝 Commits (6)

  • 18fa98a initial ServerFuture impl
  • 0a44356 Merge branch 'master' into bfry/server_future_impl
  • 16cb3c3 initial TCP future impl
  • 8859b5c tcp server timeouts
  • 3f5f770 timeouts for ServerFuture
  • cbfa7be move to new mpsc channels

📊 Changes

37 files changed (+1442 additions, -1605 deletions)

View changed files

📝 CHANGELOG.md (+10 -0)
📝 Cargo.lock (+30 -30)
client/Cargo.lock (+0 -606)
📝 client/Cargo.toml (+6 -4)
📝 client/src/client/client_future.rs (+41 -30)
📝 client/src/client/memoize_client_handle.rs (+13 -10)
📝 client/src/client/mod.rs (+1 -1)
📝 client/src/client/retry_client_handle.rs (+4 -4)
📝 client/src/client/secure_client_handle.rs (+3 -3)
📝 client/src/error/client_error.rs (+20 -3)
📝 client/src/lib.rs (+34 -0)
📝 client/src/tcp/mod.rs (+2 -1)
📝 client/src/tcp/tcp_client_stream.rs (+26 -162)
client/src/tcp/tcp_stream.rs (+352 -0)
📝 client/src/udp/mod.rs (+2 -1)
📝 client/src/udp/udp_client_stream.rs (+28 -117)
client/src/udp/udp_stream.rs (+279 -0)
📝 client/tests/client_future_tests.rs (+33 -33)
📝 client/tests/common/mod.rs (+7 -8)
📝 client/tests/secure_client_handle_tests.rs (+6 -6)

...and 17 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/70 **Author:** [@bluejekyll](https://github.com/bluejekyll) **Created:** 11/24/2016 **Status:** ✅ Merged **Merged:** 11/24/2016 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `master` ← **Head:** `bfry/server_future_impl` --- ### 📝 Commits (6) - [`18fa98a`](https://github.com/hickory-dns/hickory-dns/commit/18fa98a0beca96a4775c9f0413492c600aa13f56) initial ServerFuture impl - [`0a44356`](https://github.com/hickory-dns/hickory-dns/commit/0a443560f6ef19a1223bb5dbaef4b9deb7073f4f) Merge branch 'master' into bfry/server_future_impl - [`16cb3c3`](https://github.com/hickory-dns/hickory-dns/commit/16cb3c358827bd9e3f0aa47b12a1a99444bb9a84) initial TCP future impl - [`8859b5c`](https://github.com/hickory-dns/hickory-dns/commit/8859b5c09b4665f19609b09d019949ce2ead8a09) tcp server timeouts - [`3f5f770`](https://github.com/hickory-dns/hickory-dns/commit/3f5f7707415f5333ed8d0387f6335badde44ee95) timeouts for ServerFuture - [`cbfa7be`](https://github.com/hickory-dns/hickory-dns/commit/cbfa7bea5aa6ea377b4e80e2026364be933f4b73) move to new mpsc channels ### 📊 Changes **37 files changed** (+1442 additions, -1605 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+10 -0) 📝 `Cargo.lock` (+30 -30) ➖ `client/Cargo.lock` (+0 -606) 📝 `client/Cargo.toml` (+6 -4) 📝 `client/src/client/client_future.rs` (+41 -30) 📝 `client/src/client/memoize_client_handle.rs` (+13 -10) 📝 `client/src/client/mod.rs` (+1 -1) 📝 `client/src/client/retry_client_handle.rs` (+4 -4) 📝 `client/src/client/secure_client_handle.rs` (+3 -3) 📝 `client/src/error/client_error.rs` (+20 -3) 📝 `client/src/lib.rs` (+34 -0) 📝 `client/src/tcp/mod.rs` (+2 -1) 📝 `client/src/tcp/tcp_client_stream.rs` (+26 -162) ➕ `client/src/tcp/tcp_stream.rs` (+352 -0) 📝 `client/src/udp/mod.rs` (+2 -1) 📝 `client/src/udp/udp_client_stream.rs` (+28 -117) ➕ `client/src/udp/udp_stream.rs` (+279 -0) 📝 `client/tests/client_future_tests.rs` (+33 -33) 📝 `client/tests/common/mod.rs` (+7 -8) 📝 `client/tests/secure_client_handle_tests.rs` (+6 -6) _...and 17 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:54:33 +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#1217
No description provided.