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

add javadoc

parent 82778d23
No related branches found
No related tags found
No related merge requests found
......@@ -18,12 +18,17 @@ import java.io.DataOutputStream;
*/
public class AngelBlankEspduReceiverAtoTCP {
/** address of interest */
public static final String TCP_DESTINATION_IP = "172.20.146.111";
/* @see <a href="https://en.wikipedia.org/wiki/Port_(computer_networking)">https://en.wikipedia.org/wiki/Port_(computer_networking)</a> */
/** port of interest
* @see <a href="https://en.wikipedia.org/wiki/Port_(computer_networking)">https://en.wikipedia.org/wiki/Port_(computer_networking)</a> */
public static final int DIS_DESTINATION_PORT = 3000;
/* @see <a href="https://en.wikipedia.org/wiki/Port_(computer_networking)">https://en.wikipedia.org/wiki/Port_(computer_networking)</a> */
/** port of interest
* @see <a href="https://en.wikipedia.org/wiki/Port_(computer_networking)">https://en.wikipedia.org/wiki/Port_(computer_networking)</a> */
public static final int TCP_DESTINATION_PORT = 2999;
/** maximum packet size */
public static final int MAX_PDU_SIZE = 8192;
/** multicast group is a multicast address */
public static final String GROUP = "239.1.2.4";
/**
......
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