2013-11-05 11:44:26 -04:30
|
|
|
package ve.ucv.ciens.ccg.nxtcam.utils;
|
|
|
|
|
|
|
|
|
|
public abstract class ProjectConstants {
|
|
|
|
|
public static final int SERVER_UDP_PORT = 8889;
|
|
|
|
|
public static final int SERVER_TCP_PORT_1 = 9989;
|
|
|
|
|
public static final int SERVER_TCP_PORT_2 = 9990;
|
|
|
|
|
|
2013-11-05 18:22:25 -04:30
|
|
|
public static final String MULTICAST_ADDRESS = "230.0.0.1";
|
|
|
|
|
|
2013-11-05 11:44:26 -04:30
|
|
|
public static final boolean DEBUG = true;
|
|
|
|
|
}
|