blob: f40188676c447c1b7d38dce2f8ad57ef80f7f150 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
package derms;
import java.net.InetSocketAddress;
public class Config {
// The port where the sequencer listens for requests from the FE.
public static final int sequencerInPort = 62310;
// The multicast group of the RMs and sequencer.
public static final InetSocketAddress group = new InetSocketAddress("225.5.5.6", 62311);
}
|