Mercurial > hg > Database > Alice
annotate src/test/java/alice/daemon/UdpTest.java @ 419:aefbe41fcf12 dispose
change tab to space
author | sugi |
---|---|
date | Tue, 15 Jul 2014 16:00:22 +0900 |
parents | f38cafa457c9 |
children |
rev | line source |
---|---|
368 | 1 package alice.daemon; |
2 | |
3 import alice.datasegment.DataSegment; | |
4 | |
5 public class UdpTest { | |
419 | 6 public static void main(String[] args){ |
7 Config conf = new Config(args); | |
8 DataSegment.connectMulticast("multicast",conf.MCSTADDR, conf.localPort, conf.nis); | |
9 new MulticastStartCodeSegment().execute(); | |
10 } | |
368 | 11 |
12 } |