Author: toad
Date: 2007-04-25 19:55:40 +0000 (Wed, 25 Apr 2007)
New Revision: 12956
Modified:
trunk/plugins/JSTUN/JSTUN.java
Log:
Logging: don't log IP address to wrapper.
JSTUN appears to work!
Modified: trunk/plugins/JSTUN/JSTUN.java
===================================================================
--- trunk/plugins/JSTUN/JSTUN.java 2007-04-25 19:28:08 UTC (rev 12955)
+++ trunk/plugins/JSTUN/JSTUN.java 2007-04-25 19:55:40 UTC (rev 12956)
@@ -183,7 +183,7 @@
Integer iMTU =
(Integer) m.invoke(nif, new Object[0]);
if(iMTU != null) {
mtu =
iMTU.intValue();
-
System.err.println("Found interface MTU: "+nif+" : "+mtu);
+
System.err.println("Found interface MTU: "+nif.getName()+" : "+mtu);
}
}
} catch (Throwable t) {