mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 11:15:54 +03:00
[PR #363] [MERGED] Support DNS-SD over mDNS #1386
Labels
No labels
blocked
breaking-change
bug
bug:critical
bug:tests
cleanup
compliance
compliance
compliance
crate:all
crate:client
crate:native-tls
crate:proto
crate:recursor
crate:resolver
crate:resolver
crate:rustls
crate:server
crate:util
dependencies
docs
duplicate
easy
easy
enhance
enhance
enhance
feature:dns-over-https
feature:dns-over-quic
feature:dns-over-tls
feature:dnsssec
feature:global_lb
feature:mdns
feature:tsig
features:edns
has workaround
ops
perf
platform:WASM
platform:android
platform:fuchsia
platform:linux
platform:macos
platform:windows
pull-request
question
test
tools
tools
trust
unclear
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hickory-dns#1386
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/hickory-dns/hickory-dns/pull/363
Author: @bluejekyll
Created: 3/26/2018
Status: ✅ Merged
Merged: 4/8/2018
Merged by: @bluejekyll
Base:
master← Head:support-mdns-sd📝 Commits (10+)
867d4b2refactor DnsFuture for multiple responses36d1016clean up some tests2a6806bthread DnsRequest through all DnsHandlesf816994fix all-features73fc7b4clean up warnings57d2488thread DnsRequestOptions through Resolver28791c2change all DnsHandles to return DnsResponse38f54d3refactor to allow multiple messages per DnsResponseb944989refactor SRV lookups to standard functions4333d96SRV lookups now have associated IPs, needs restriction📊 Changes
44 files changed (+1915 additions, -1013 deletions)
View changed files
📝
Cargo.lock(+57 -39)📝
client/README.md(+6 -6)📝
client/src/client/client.rs(+15 -19)📝
client/src/client/client_future.rs(+19 -15)📝
client/src/client/memoize_client_handle.rs(+19 -12)📝
client/src/lib.rs(+5 -5)📝
client/src/op/mod.rs(+1 -0)📝
integration-tests/src/mock_client.rs(+10 -7)📝
integration-tests/tests/client_tests.rs(+97 -88)📝
integration-tests/tests/lookup_tests.rs(+27 -33)📝
integration-tests/tests/name_server_pool_tests.rs(+59 -40)📝
integration-tests/tests/secure_client_handle_tests.rs(+57 -59)📝
proto/Cargo.toml(+1 -0)📝
proto/src/lib.rs(+8 -87)📝
proto/src/multicast/mdns_client_stream.rs(+13 -11)📝
proto/src/multicast/mdns_stream.rs(+8 -12)📝
proto/src/rr/domain/label.rs(+7 -0)📝
proto/src/rr/domain/mod.rs(+3 -3)➕
proto/src/rr/domain/try_parse_ip.rs(+66 -0)📝
proto/src/rr/rdata/txt.rs(+18 -3)...and 24 more files
📄 Description
With mDNS support having landed, we can now start working on DNS service discovery. This PR is the work to get there.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.