From 9e39f34473eefdae5fb350da35933d4ae02a6e54 Mon Sep 17 00:00:00 2001 From: sponge <sponge@mail.i2p> Date: Fri, 5 Dec 2008 10:12:10 +0000 Subject: [PATCH] BOB: removed debugging (oops!) BUMP: BOB to 00.00.02 BUMP router to -3 --- apps/BOB/nbproject/private/private.xml | 3 --- apps/BOB/src/net/i2p/BOB/DoCMDS.java | 2 +- apps/BOB/src/net/i2p/BOB/I2PtoTCP.java | 11 +++++------ apps/BOB/src/net/i2p/BOB/TCPtoI2P.java | 10 ++++------ router/java/src/net/i2p/router/RouterVersion.java | 2 +- 5 files changed, 11 insertions(+), 17 deletions(-) diff --git a/apps/BOB/nbproject/private/private.xml b/apps/BOB/nbproject/private/private.xml index 2482568bf9..c1f155a782 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 a4fdba6076..bb29b13943 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 a9a7c981b8..5d24e19d36 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 2a0e6519ea..df61e78e1b 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 65db8e97fd..0c494b7f44 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); -- GitLab