view src/test/java/alice/daemon/UdpTest.java @ 368:f38cafa457c9 multicast

add MulticastDataSegment Test
author sugi
date Sat, 17 May 2014 21:37:17 +0900
parents
children aefbe41fcf12
line wrap: on
line source

package alice.daemon;

import alice.datasegment.DataSegment;

public class UdpTest {
	public static void main(String[] args){
		Config conf = new Config(args);
		DataSegment.connectMulticast("multicast",conf.MCSTADDR, conf.localPort, conf.nis);
		new MulticastStartCodeSegment().execute();
	}

}