-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathMulticastDnsService.cs
139 lines (115 loc) · 4.94 KB
/
MulticastDnsService.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Net;
using System.Threading;
using System.Net.Sockets;
using Iot.Device.MulticastDns.Entities;
using Iot.Device.MulticastDns.EventArgs;
using Iot.Device.MulticastDns.Enum;
namespace Iot.Device.MulticastDns
{
/// <summary>
/// Multicast DNS (mDNS) is a computer networking protocol that resolves hostnames to IP addresses within local networks.
/// </summary>
public sealed class MulticastDnsService : IDisposable
{
private const string MulticastDnsAddress = "224.0.0.251";
private const int MulticastDnsPort = 5353;
private bool _listening = false;
private IPAddress _multicastAddress;
private UdpClient _client;
/// <summary>
/// Initializes a new instance of the <see cref="MulticastDnsService" /> class.
/// </summary>
public MulticastDnsService()
{
_multicastAddress = IPAddress.Parse(MulticastDnsAddress);
_client = new(new IPEndPoint(IPAddress.Any, MulticastDnsPort));
}
/// <summary>
/// Start the worker thread that will listen for Multicast packets.
/// </summary>
public void Start()
{
if (!_listening)
{
_listening = true;
new Thread(Run).Start();
}
}
/// <summary>
/// Stop the worker thread that is listening for Multicast packets.
/// </summary>
public void Stop() => _listening = false;
/// <summary>
/// The delegate that will be invoked when a Multicast DNS message is received.
/// </summary>
/// <param name="sender">The MulticastDNSService instance that received the message.</param>
/// <param name="e">The MessageReceivedEventArgs containing the received message.</param>
public delegate void MessageReceivedEventHandler(object sender, MessageReceivedEventArgs e);
/// <summary>
/// The event that is raised when a Multicast DNS message is received.
/// </summary>
public event MessageReceivedEventHandler MessageReceived;
/// <summary>
/// The delegate that will be invoked when the status of a Multicast DNS service is changed.
/// </summary>
/// <param name="sender">The MulticastDNSService instance that is reporting its status.</param>
/// <param name="e">The MulticastDnsStatusEventArgs containing the status and an optional message.</param>
public delegate void MulticastDnsStatusChangedEventHandler(object sender, MulticastDnsStatusEventArgs e);
/// <summary>
/// The event that is raised when the status of a Multicast DNS service is changed.
/// </summary>
public event MulticastDnsStatusChangedEventHandler StatusChanged;
/// <summary>
/// Sends a Multicast DNS message.
/// </summary>
/// <param name="message">The message to be sent.</param>
public void Send(Message message) => _client.Send(message.GetBytes(), new(_multicastAddress, MulticastDnsPort));
private void Run()
{
try
{
_client.JoinMulticastGroup(_multicastAddress);
IPEndPoint multicastEndpoint = new(_multicastAddress, MulticastDnsPort);
IPEndPoint remoteEndpoint = new(IPAddress.Any, 0);
byte[] buffer = new byte[2048];
StatusChanged?.Invoke(this, new MulticastDnsStatusEventArgs(MulticastDnsStatus.Running));
while (_listening)
{
int length = _client.Receive(buffer, ref remoteEndpoint);
if (length == 0)
{
continue;
}
Message msg = new(buffer);
if (msg != null)
{
MessageReceivedEventArgs eventArgs = new(msg);
MessageReceived?.Invoke(this, eventArgs);
if (eventArgs.Response != null)
{
_client.Send(eventArgs.Response.GetBytes(), multicastEndpoint);
}
}
}
_client.DropMulticastGroup(_multicastAddress);
}
catch(Exception ex)
{
StatusChanged?.Invoke(this, new MulticastDnsStatusEventArgs(MulticastDnsStatus.Error, ex.ToString()));
}
StatusChanged?.Invoke(this, new MulticastDnsStatusEventArgs(MulticastDnsStatus.Stopped));
}
/// <summary>
/// Dispose the Multicast DNS Service which causes it to stop listening.
/// </summary>
public void Dispose()
{
Stop();
_client.Close();
_client.Dispose();
}
}
}