[PR #936] [MERGED] Prototest #1804

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

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/936
Author: @chunyingw
Created: 12/1/2019
Status: Merged
Merged: 12/9/2019
Merged by: @bluejekyll

Base: masterHead: prototest


📝 Commits (9)

📊 Changes

13 files changed (+521 additions, -495 deletions)

View changed files

📝 Cargo.lock (+17 -17)
📝 crates/https/Cargo.toml (+1 -1)
📝 crates/proto/Cargo.toml (+2 -1)
📝 crates/proto/src/lib.rs (+20 -0)
📝 crates/proto/src/tcp/tcp_client_stream.rs (+25 -118)
📝 crates/proto/src/tcp/tcp_stream.rs (+11 -114)
crates/proto/src/tests/mod.rs (+10 -0)
crates/proto/src/tests/tcp.rs (+155 -0)
crates/proto/src/tests/udp.rs (+236 -0)
📝 crates/proto/src/udp/mod.rs (+1 -1)
📝 crates/proto/src/udp/udp_client_stream.rs (+12 -131)
📝 crates/proto/src/udp/udp_stream.rs (+30 -111)
📝 crates/resolver/Cargo.toml (+1 -1)

📄 Description

This PR is based on https://github.com/bluejekyll/trust-dns/pull/932/commits/6f6d91a818c7be1deebee91d19a78ad47855b0e3 and will rebase after after update to tokio 0.2 release #932 is merged.

And it's ready to be reviewed.


Fixes: #934


🔄 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/936 **Author:** [@chunyingw](https://github.com/chunyingw) **Created:** 12/1/2019 **Status:** ✅ Merged **Merged:** 12/9/2019 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `master` ← **Head:** `prototest` --- ### 📝 Commits (9) - [`6f6d91a`](https://github.com/hickory-dns/hickory-dns/commit/6f6d91a818c7be1deebee91d19a78ad47855b0e3) update to tokio 0.2 release - [`9ea9dd4`](https://github.com/hickory-dns/hickory-dns/commit/9ea9dd41576032c0338c59cf4d8c4d09bf692bdb) [trust-dns-proto] Refactor tests - [`8dfb4e0`](https://github.com/hickory-dns/hickory-dns/commit/8dfb4e0866b56ee2a8e692defcc98d103cd54cfb) [trust-dns-proto] Refactor tests - [`47d14ae`](https://github.com/hickory-dns/hickory-dns/commit/47d14aeb0f9aa1a8a485345477a37609ee24dfba) Merge branch 'prototest' of https://github.com/chunyingw/trust-dns into prototest - [`f65b15e`](https://github.com/hickory-dns/hickory-dns/commit/f65b15ea7cd2dc1fc56105aa7b72fccee47f8f63) Merge remote-tracking branch 'upstream/master' into prototest - [`2e33265`](https://github.com/hickory-dns/hickory-dns/commit/2e33265b635d54fa22c17ddd2a52fd2e6c619e33) Merge remote-tracking branch 'upstream/master' into prototest - [`780654a`](https://github.com/hickory-dns/hickory-dns/commit/780654a79fc791373de9876b6a1d185ccab659ff) [trust-dns-proto] Refactor tests - [`c9ef024`](https://github.com/hickory-dns/hickory-dns/commit/c9ef0245cc4c7457809f74c56adca1e5d1e35e52) [trust-dns-proto] Refactor tests - [`c266b99`](https://github.com/hickory-dns/hickory-dns/commit/c266b995f2f1a2d02e4c44a229697b7b32ad5abe) Merge branch 'prototest' of https://github.com/chunyingw/trust-dns into prototest ### 📊 Changes **13 files changed** (+521 additions, -495 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+17 -17) 📝 `crates/https/Cargo.toml` (+1 -1) 📝 `crates/proto/Cargo.toml` (+2 -1) 📝 `crates/proto/src/lib.rs` (+20 -0) 📝 `crates/proto/src/tcp/tcp_client_stream.rs` (+25 -118) 📝 `crates/proto/src/tcp/tcp_stream.rs` (+11 -114) ➕ `crates/proto/src/tests/mod.rs` (+10 -0) ➕ `crates/proto/src/tests/tcp.rs` (+155 -0) ➕ `crates/proto/src/tests/udp.rs` (+236 -0) 📝 `crates/proto/src/udp/mod.rs` (+1 -1) 📝 `crates/proto/src/udp/udp_client_stream.rs` (+12 -131) 📝 `crates/proto/src/udp/udp_stream.rs` (+30 -111) 📝 `crates/resolver/Cargo.toml` (+1 -1) </details> ### 📄 Description This PR is based on https://github.com/bluejekyll/trust-dns/pull/932/commits/6f6d91a818c7be1deebee91d19a78ad47855b0e3 and will rebase after after `update to tokio 0.2 release #932` is merged. And it's ready to be reviewed. ---- Fixes: #934 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 02:26:26 +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#1804
No description provided.