checkAcceptCalled = true;
// our local addr is OK.
if (null != this.validHost) {
if (!this.validHost.equals(host)) {
throw new SecurityException();
}
}
if (-1 != this.validPort) {
if (this.validPort != port) {
throw new SecurityException();
}
}
if ("127.0.0.1".equals(host)) {
return;
}
super.checkAccept(host, port);