Exemple #1
0
 /**
  * Creates the unicast and multicast sockets and starts the unicast and multicast receiver threads
  */
 public void start() throws Exception {
   if (Trace.trace) {
     Trace.info("UDP.start()", "creating sockets and starting threads");
   }
   createSockets();
   passUp(new Event(Event.SET_LOCAL_ADDRESS, local_addr));
   startThreads();
 }