-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b81d639
commit 2fee19e
Showing
2 changed files
with
4 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,4 @@ | ||
A simple Multicast Domain Name Service based on [RFC 6762](https://tools.ietf.org/html/rfc6762). | ||
The source code is on [GitHub](https://github.com/richardschneider/net-mdns) and the | ||
package is published on [NuGet](https://www.nuget.org/packages/Makaretu.Dns.Multicast). | ||
A simple Multicast Domain Name Service based on [RFC 6762](https://tools.ietf.org/html/rfc6762). The source code is on [GitHub](https://github.com/richardschneider/net-mdns) and the package is published on [NuGet](https://www.nuget.org/packages/Makaretu.Dns.Multicast). | ||
|
||
The [MulticastService](xref:Makaretu.Dns.MulticastService) is used to send to | ||
[queries](xref:Makaretu.Dns.MulticastService.SendQuery) and | ||
[answers](xref:Makaretu.Dns.MulticastService.SendAnswer). | ||
It also listens for DNS [Messages](xref:Makaretu.Dns.Message) and raises either the | ||
[QueryReceived](xref:Makaretu.Dns.MulticastService.QueryReceived) or | ||
[AnswerReceived](xref:Makaretu.Dns.MulticastService.AnswerReceived) event. | ||
The [MulticastService](xref:Makaretu.Dns.MulticastService) is used to send [queries](xref:Makaretu.Dns.MulticastService.SendQuery) and [answers](xref:Makaretu.Dns.MulticastService.SendAnswer). It also listens for DNS [Messages](xref:Makaretu.Dns.Message) and raises either the [QueryReceived](xref:Makaretu.Dns.MulticastService.QueryReceived) or [AnswerReceived](xref:Makaretu.Dns.MulticastService.AnswerReceived) event. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
# Multicast DNS | ||
|
||
A simple Multicast Domain Name Service based on [RFC 6762](https://tools.ietf.org/html/rfc6762). | ||
Can be used as both a client (sending queries) or a server (responding to queries). | ||
A simple Multicast Domain Name Service based on [RFC 6762](https://tools.ietf.org/html/rfc6762). Can be used as both a client (sending queries) or a server (responding to queries). | ||
|
||
The source code is on [GitHub](https://github.com/richardschneider/net-mdns) and the | ||
package is published on [NuGet](https://www.nuget.org/packages/Makaretu.Dns.Multicast). | ||
The source code is on [GitHub](https://github.com/richardschneider/net-mdns) and the package is published on [NuGet](https://www.nuget.org/packages/Makaretu.Dns.Multicast). | ||
|
||
- [Articles](articles/intro.md) on using Multicast DNS. | ||
- [Documentation](api/Makaretu.Dns.yml) describes the classes in detail |