if (message instanceof UDPPortTestMessage) {
UDPPortTestMessage msg = (UDPPortTestMessage) message;
try {
vm.testUDPPort(msg.getHost(), msg.getPort(), msg.getDuration());
} catch (IOException e) {
logger.warning("Unable to test udp port " + msg.getPort()
+ ": " + e.getMessage());
}