better logic for proper seed ip recognition and better error messages

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@7685 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 14 years ago
parent 8b95a26866
commit 37fede9d30

@ -847,7 +847,9 @@ public class yacySeed implements Cloneable, Comparable<yacySeed>, Comparator<yac
if (ip == null) return ipString + " -> IP is not proper"; //this does not work with staticIP
if (Switchboard.getSwitchboard().isAllIPMode()) return null;
boolean islocal = Domains.isLocal(ip);
return (!islocal && Switchboard.getSwitchboard().isGlobalMode() || (islocal && Switchboard.getSwitchboard().isIntranetMode())) ? null : ipString + " - IP for localhost rejected";
if (islocal && Switchboard.getSwitchboard().isGlobalMode()) return ipString + " - local IP for global mode rejected";
if (!islocal && Switchboard.getSwitchboard().isIntranetMode()) return ipString + " - global IP for intranet mode rejected";
return null;
}
@Override

Loading…
Cancel
Save