if(logDEBUG) Logger.debug(this, '\'' +host+"' does not look like an IP address");
}
this._address = addr;
this.hostname = host;
if(checkHostnameOrIPSyntax && null != this.hostname) {
if(!HostnameUtil.isValidHostname(this.hostname, true)) throw new HostnameSyntaxException();
}
// we're created with a hostname so delay the lookup of the address
// until it's needed to work better with dynamic DNS hostnames
}