diff --git a/apps/BOB/nbproject/private/private.xml b/apps/BOB/nbproject/private/private.xml index 2482568bf901a79a0141ee10333f9c8aa577e198..c1f155a782bd6f432a8846f3d3b308ba6fa6856c 100644 --- a/apps/BOB/nbproject/private/private.xml +++ b/apps/BOB/nbproject/private/private.xml @@ -1,7 +1,4 @@ <?xml version="1.0" encoding="UTF-8"?> <project-private xmlns="http://www.netbeans.org/ns/project-private/1"> <editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/1"/> - <open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/1"> - <file>file:/root/NetBeansProjects/i2p.i2p/apps/BOB/src/net/i2p/BOB/MUXlisten.java</file> - </open-files> </project-private> diff --git a/apps/BOB/src/net/i2p/BOB/DoCMDS.java b/apps/BOB/src/net/i2p/BOB/DoCMDS.java index a4fdba6076caec8939a6238e2c9ac2d9bcf591ae..bb29b13943e1fb41d489cf86e70b2a8b8fcd296c 100644 --- a/apps/BOB/src/net/i2p/BOB/DoCMDS.java +++ b/apps/BOB/src/net/i2p/BOB/DoCMDS.java @@ -46,7 +46,7 @@ public class DoCMDS implements Runnable { // FIX ME // I need a better way to do versioning, but this will do for now. - public static final String BMAJ = "00", BMIN = "00", BREV = "01", BEXT = "-E"; + public static final String BMAJ = "00", BMIN = "00", BREV = "02", BEXT = ""; public static final String BOBversion = BMAJ + "." + BMIN + "." + BREV + BEXT; private Socket server; private Properties props; diff --git a/apps/BOB/src/net/i2p/BOB/I2PtoTCP.java b/apps/BOB/src/net/i2p/BOB/I2PtoTCP.java index a9a7c981b865321a9792a990f38563b749a5853d..5d24e19d36bcf629d2c24f2dd3156db0d0181900 100644 --- a/apps/BOB/src/net/i2p/BOB/I2PtoTCP.java +++ b/apps/BOB/src/net/i2p/BOB/I2PtoTCP.java @@ -119,27 +119,26 @@ die: { // nop } } - System.out.println("I2PtoTCP: Going away..."); + // System.out.println("I2PtoTCP: Going away..."); } catch(Exception e) { - System.out.println("I2PtoTCP: Owch! damn!"); + // System.out.println("I2PtoTCP: Owch! damn!"); break die; } } // die try { - //System.out.println("I2PtoTCP: Close I2P"); + // System.out.println("I2PtoTCP: Close I2P"); I2P.close(); } catch(Exception e) { tell = false; } //System.out.println("I2PtoTCP: Closed I2P"); try { - //System.out.println("I2PtoTCP: Close sock"); + // System.out.println("I2PtoTCP: Close sock"); sock.close(); } catch(Exception e) { tell = false; } - //System.out.println("I2PtoTCP: Closed sock"); - System.out.println("I2PtoTCP: Done"); + // System.out.println("I2PtoTCP: Done"); } } diff --git a/apps/BOB/src/net/i2p/BOB/TCPtoI2P.java b/apps/BOB/src/net/i2p/BOB/TCPtoI2P.java index 2a0e6519eaccf0e79c9739564c429a822e751636..df61e78e1b1fc7700d6cc7cd7c5b16d2ef4e446b 100644 --- a/apps/BOB/src/net/i2p/BOB/TCPtoI2P.java +++ b/apps/BOB/src/net/i2p/BOB/TCPtoI2P.java @@ -152,7 +152,7 @@ public class TCPtoI2P implements Runnable { // nop } } - System.out.println("TCPtoI2P: Going away..."); + // System.out.println("TCPtoI2P: Going away..."); } catch(I2PException e) { Emsg("ERROR " + e.toString(), out); @@ -170,19 +170,17 @@ public class TCPtoI2P implements Runnable { } catch(IOException ioe) { } try { - System.out.println("TCPtoI2P: Close I2P"); + // System.out.println("TCPtoI2P: Close I2P"); I2P.close(); } catch(Exception e) { } - //System.out.println("TCPtoI2P: Closed I2P"); try { - System.out.println("TCPtoI2P: Close sock"); + // System.out.println("TCPtoI2P: Close sock"); sock.close(); } catch(Exception e) { } - //System.out.println("TCPtoI2P: Closed sock"); - System.out.println("TCPtoI2P: Done."); + // System.out.println("TCPtoI2P: Done."); } } diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 65db8e97fdb6bbbee45abdb076c64b6309e5b3af..0c494b7f448d6ff1b9559129b0e2e5500b804308 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -17,7 +17,7 @@ import net.i2p.CoreVersion; public class RouterVersion { public final static String ID = "$Revision: 1.548 $ $Date: 2008-06-07 23:00:00 $"; public final static String VERSION = "0.6.5"; - public final static long BUILD = 2; + public final static long BUILD = 3; public static void main(String args[]) { System.out.println("I2P Router version: " + VERSION + "-" + BUILD); System.out.println("Router ID: " + RouterVersion.ID);