/** * constants.java */ package boondock.holdem.Network; /** * A set of constants used by both the server and the client. * * @author Jonathan O'Keefe * @author Scott Semonian * @author Matt Brinza * @author Hamid R. Tahsildoost * * @author The Boondock Saints * @author No Limit Texas Holdem */ public interface constants { public static final String MULTICAST_ADDRESS = "239.0.0.1"; public static final int MULTICAST_LISTENING_PORT = 5555; public static final int MULTICAST_SENDING_PORT = 5554; public static final int SERVER_PORT = 2666; public static final String DISCONNECT_STRING = "DISCONNECT"; public static final String MESSAGE_SEPARATOR = "\t"; public static final int MESSAGE_SIZE = 512; }