BOB: removed debugging (oops!)

BUMP: BOB to 00.00.02
BUMP router to -3
This commit is contained in:
sponge
2008-12-05 10:12:10 +00:00
parent 45ed744210
commit 9e39f34473
5 changed files with 11 additions and 17 deletions

View File

@ -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>

View File

@ -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;

View File

@ -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");
}
}

View File

@ -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.");
}
}

View File

@ -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);