diff --git a/examples/src/UdpExamples/MulticastUdpReceiver.java b/examples/src/UdpExamples/MulticastUdpReceiver.java index e7d5220158b9ae03570998d5729f7ecaa6853348..86e3e6dfddd8446a9ef38aba0b8946600a5ee833 100644 --- a/examples/src/UdpExamples/MulticastUdpReceiver.java +++ b/examples/src/UdpExamples/MulticastUdpReceiver.java @@ -8,7 +8,12 @@ import java.util.logging.Level; import java.util.logging.Logger; /** - * Looks a lot like UdpReceiver. Start this before launching MulticastSender. + * Send preformatted test packets on a UDP multicast group. + * The source looks a lot like UnicastUdpReceiver. Start this before launching MulticastUdpSender. + * Multicast must be enabled for the (wired or wireless) LAN that the system is connected too. + * Note that these paired programs can communicate within a remote LAN (such as a wireless + * home network) even if one or both machines are connected via a + * <a href="https://en.wikipedia.org/wiki/Virtual_private_network" target="_blank">Virtual Private Network (VPN)</a>. * * @author mcgredo * @author brutzman@nps.edu diff --git a/examples/src/UdpExamples/MulticastUdpSender.java b/examples/src/UdpExamples/MulticastUdpSender.java index 68788b7f83da4a6edbf7c8d358669ebd7de0963f..35d0bd1a60cd94b20e526aea629a3af0b5cf95af 100644 --- a/examples/src/UdpExamples/MulticastUdpSender.java +++ b/examples/src/UdpExamples/MulticastUdpSender.java @@ -7,7 +7,12 @@ import java.util.logging.Level; import java.util.logging.Logger; /** - * Looks a lot like UdpSender. Start this after launching MulticastReceiver. + * Send preformatted test packets on a UDP multicast group. + * The source looks a lot like UnicastUdpSender. Start this after launching MulticastUdpReceiver. + * Multicast must be enabled for the (wired or wireless) LAN that the system is connected too. + * Note that these paired programs can communicate within a remote LAN (such as a wireless + * home network) even if one or both machines are connected via a + * <a href="https://en.wikipedia.org/wiki/Virtual_private_network" target="_blank">Virtual Private Network (VPN)</a>. * * Privacy note: this sender advertises your user name as part of the multicast packet message *