Skip to content
Snippets Groups Projects
Commit bc916c04 authored by Brutzman, Don's avatar Brutzman, Don
Browse files

javadoc

parent 7061138e
No related branches found
No related tags found
No related merge requests found
...@@ -19,10 +19,10 @@ public class MulticastUdpSender ...@@ -19,10 +19,10 @@ public class MulticastUdpSender
// reserved range for all IPv4 multicast: 224.0.0.0 through 239.255.255.255 // reserved range for all IPv4 multicast: 224.0.0.0 through 239.255.255.255
// https://www.iana.org/assignments/multicast-addresses/multicast-addresses.xhtml // https://www.iana.org/assignments/multicast-addresses/multicast-addresses.xhtml
/** Default multicast group address we send on. /** Default multicast group address for send and receive connections.
* @see <a href="https://en.wikipedia.org/wiki/Multicast_address">https://en.wikipedia.org/wiki/Multicast_address</a> */ * @see <a href="https://en.wikipedia.org/wiki/Multicast_address">https://en.wikipedia.org/wiki/Multicast_address</a> */
public static final String MULTICAST_ADDRESS = "239.1.2.15"; // within reserved multicast address range public static final String MULTICAST_ADDRESS = "239.1.2.15"; // within reserved multicast address range
/** Default multicast port used, matches Wireshark DIS capture default /** Default socket port used, matches Wireshark DIS capture default
* @see <a href="https://en.wikipedia.org/wiki/Port_(computer_networking)">https://en.wikipedia.org/wiki/Port_(computer_networking)</a> */ * @see <a href="https://en.wikipedia.org/wiki/Port_(computer_networking)">https://en.wikipedia.org/wiki/Port_(computer_networking)</a> */
public static final int DESTINATION_PORT = 1718; public static final int DESTINATION_PORT = 1718;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment