/** @param text destination IP address */
public void setDstAddress(String text) throws InvalidInputException {
try {
dstAddress = InetAddress.getByName(text);
} catch (UnknownHostException e) {
throw new InvalidInputException("Invalid destination address", e);
}
}