You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See also the [Singlewire Multicast Testing Tool](https://support.singlewire.com/s/software-downloads/a17C0000008Dg7AIAS/ictestermulticastzip) discussed [here](https://salmannaqvi.com/2016/11/14/simple-multicast-testing-tool-for-windows/) by Salman Naqvi – 2 x CCIE. The Singlewire tool is perfectly adequate if you have a single network interface, but if you're working on systems with multiple network interfaces, this version should be quite useful.
Console.WriteLine("Port must be between 1 and 65535");
87
+
continue;
88
+
}
89
+
MulticastPort=enteredPort;
90
+
break;
91
+
}
92
+
56
93
// reset selection variable
57
94
selection=-1;
58
95
@@ -130,7 +167,7 @@ public static void Listen()
130
167
varreceiveThread=newThread(Receive);
131
168
receiveThread.Start();
132
169
133
-
Console.WriteLine($"\nBound udp listener on {_bindingAddress}. Joined multicast group {MulticastAddress}. Waiting to receive data...\n");
170
+
Console.WriteLine($"\nBound udp listener on {_bindingAddress}. Joined multicast group {MulticastAddress}. Port {MulticastPort}. Waiting to receive data...\n");
0 commit comments