[PR #3010] [CLOSED] proto: add support for mDNS resolution #3487

Closed
opened 2026-03-16 11:46:20 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/3010
Author: @mokeyish
Created: 5/23/2025
Status: Closed

Base: mainHead: dev


📝 Commits (2)

  • 66725e2 proto: add support for mDNS resolution
  • db5087b Fix unit test failure due to MessageType check

📊 Changes

36 files changed (+348 additions, -123 deletions)

View changed files

📝 bin/Cargo.toml (+1 -0)
📝 bin/tests/integration/authority_battery/basic.rs (+2 -2)
📝 bin/tests/integration/authority_battery/dnssec.rs (+2 -2)
📝 bin/tests/integration/authority_battery/dynamic_update.rs (+2 -2)
📝 bin/tests/integration/server_harness/mod.rs (+2 -0)
📝 crates/client/src/client/client.rs (+1 -1)
📝 crates/client/src/client/memoize_client_handle.rs (+1 -1)
📝 crates/proto/benches/lib.rs (+2 -2)
📝 crates/proto/src/dnssec/dnssec_dns_handle/mod.rs (+1 -1)
📝 crates/proto/src/op/header.rs (+4 -3)
📝 crates/proto/src/op/message.rs (+14 -1)
📝 crates/proto/src/quic/tests.rs (+1 -1)
📝 crates/proto/src/tests/udp.rs (+1 -1)
📝 crates/proto/src/xfer/dns_response.rs (+29 -19)
📝 crates/proto/src/xfer/mod.rs (+9 -0)
📝 crates/proto/src/xfer/retry_dns_handle.rs (+1 -1)
📝 crates/recursor/src/recursor.rs (+1 -1)
📝 crates/resolver/Cargo.toml (+6 -0)
crates/resolver/examples/mdns_resolver.rs (+108 -0)
📝 crates/resolver/src/caching_client.rs (+4 -4)

...and 16 more files

📄 Description

  1. Add support for mDNS resolution
  2. Fix unit test failure due to MessageType check

🔄 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/3010 **Author:** [@mokeyish](https://github.com/mokeyish) **Created:** 5/23/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (2) - [`66725e2`](https://github.com/hickory-dns/hickory-dns/commit/66725e2386752981c7cb031959ab1bb48297c5dd) proto: add support for mDNS resolution - [`db5087b`](https://github.com/hickory-dns/hickory-dns/commit/db5087b67e9c7f6d39bcf9a9c4aa9fd48ef68e47) Fix unit test failure due to MessageType check ### 📊 Changes **36 files changed** (+348 additions, -123 deletions) <details> <summary>View changed files</summary> 📝 `bin/Cargo.toml` (+1 -0) 📝 `bin/tests/integration/authority_battery/basic.rs` (+2 -2) 📝 `bin/tests/integration/authority_battery/dnssec.rs` (+2 -2) 📝 `bin/tests/integration/authority_battery/dynamic_update.rs` (+2 -2) 📝 `bin/tests/integration/server_harness/mod.rs` (+2 -0) 📝 `crates/client/src/client/client.rs` (+1 -1) 📝 `crates/client/src/client/memoize_client_handle.rs` (+1 -1) 📝 `crates/proto/benches/lib.rs` (+2 -2) 📝 `crates/proto/src/dnssec/dnssec_dns_handle/mod.rs` (+1 -1) 📝 `crates/proto/src/op/header.rs` (+4 -3) 📝 `crates/proto/src/op/message.rs` (+14 -1) 📝 `crates/proto/src/quic/tests.rs` (+1 -1) 📝 `crates/proto/src/tests/udp.rs` (+1 -1) 📝 `crates/proto/src/xfer/dns_response.rs` (+29 -19) 📝 `crates/proto/src/xfer/mod.rs` (+9 -0) 📝 `crates/proto/src/xfer/retry_dns_handle.rs` (+1 -1) 📝 `crates/recursor/src/recursor.rs` (+1 -1) 📝 `crates/resolver/Cargo.toml` (+6 -0) ➕ `crates/resolver/examples/mdns_resolver.rs` (+108 -0) 📝 `crates/resolver/src/caching_client.rs` (+4 -4) _...and 16 more files_ </details> ### 📄 Description 1. Add support for mDNS resolution 2. Fix unit test failure due to MessageType check --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 11:46:20 +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#3487
No description provided.