resolve
[org.ibex.jinetd.git] / src / org / ibex / jinetd / Host.java
index d745222..0a27734 100644 (file)
@@ -35,28 +35,14 @@ public class Host extends TreeClassLoader {
        if (!new File(path).exists() || !new File(path).isDirectory()) return;
         try {
            Log.warn(Host.class, "resolving " + host);
-           InetAddress addr = InetAddress.getByName(host);
-
-           /*
-           boolean good = false;
-           try {
-               if (NetworkInterface.getByInetAddress(addr) != null) good = true;
-               if (!good) Log.warn(Host.class, "host " + host + "resolves to " + addr + " which is not local");
-           } catch (Exception e) {
-               Log.warn(Host.class, "host " + host + "resolves to " + addr + " which is not local because:");
-               Log.warn(Host.class, e);
-           }
-           if (!good) return;
-           */        
-
-           if (new File(path + File.separatorChar + "WEB-INF").exists()) {
-               String pad = "";
-               while(pad.length() + host.length() < 30) pad += " ";
-               Log.info(Main.class, pad + host + " => " + path);
-               hosts.put(host, pcl = new Host(path, host, pcl));
-               if (!"ibex.org".equals(host)) return;
-           }
-       } catch (UnknownHostException e) {
+            InetAddress ia = InetAddress.getByName(host);
+            String pad = "";
+            while(pad.length() + host.length() < 30) pad += " ";
+            if (ia.equals(InetAddress.getLocalHost())) {
+                Log.info(Main.class, pad + host + " => " + path);
+                hosts.put(host, pcl = new Host(path, host, pcl));
+            }
+        } catch (UnknownHostException e) {
             if (depth >= 3) return;
         }
         String[] subdirs = new File(path).list();