I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 9e39f344 authored by sponge's avatar sponge
Browse files

BOB: removed debugging (oops!)

BUMP: BOB to 00.00.02
BUMP router to -3
parent 45ed7442
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project-private xmlns="http://www.netbeans.org/ns/project-private/1"> <project-private xmlns="http://www.netbeans.org/ns/project-private/1">
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/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> </project-private>
...@@ -46,7 +46,7 @@ public class DoCMDS implements Runnable { ...@@ -46,7 +46,7 @@ public class DoCMDS implements Runnable {
// FIX ME // FIX ME
// I need a better way to do versioning, but this will do for now. // 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; public static final String BOBversion = BMAJ + "." + BMIN + "." + BREV + BEXT;
private Socket server; private Socket server;
private Properties props; private Properties props;
......
...@@ -119,27 +119,26 @@ die: { ...@@ -119,27 +119,26 @@ die: {
// nop // nop
} }
} }
System.out.println("I2PtoTCP: Going away..."); // System.out.println("I2PtoTCP: Going away...");
} catch(Exception e) { } catch(Exception e) {
System.out.println("I2PtoTCP: Owch! damn!"); // System.out.println("I2PtoTCP: Owch! damn!");
break die; break die;
} }
} // die } // die
try { try {
//System.out.println("I2PtoTCP: Close I2P"); // System.out.println("I2PtoTCP: Close I2P");
I2P.close(); I2P.close();
} catch(Exception e) { } catch(Exception e) {
tell = false; tell = false;
} }
//System.out.println("I2PtoTCP: Closed I2P"); //System.out.println("I2PtoTCP: Closed I2P");
try { try {
//System.out.println("I2PtoTCP: Close sock"); // System.out.println("I2PtoTCP: Close sock");
sock.close(); sock.close();
} catch(Exception e) { } catch(Exception e) {
tell = false; tell = false;
} }
//System.out.println("I2PtoTCP: Closed sock"); // System.out.println("I2PtoTCP: Done");
System.out.println("I2PtoTCP: Done");
} }
} }
...@@ -152,7 +152,7 @@ public class TCPtoI2P implements Runnable { ...@@ -152,7 +152,7 @@ public class TCPtoI2P implements Runnable {
// nop // nop
} }
} }
System.out.println("TCPtoI2P: Going away..."); // System.out.println("TCPtoI2P: Going away...");
} catch(I2PException e) { } catch(I2PException e) {
Emsg("ERROR " + e.toString(), out); Emsg("ERROR " + e.toString(), out);
...@@ -170,19 +170,17 @@ public class TCPtoI2P implements Runnable { ...@@ -170,19 +170,17 @@ public class TCPtoI2P implements Runnable {
} catch(IOException ioe) { } catch(IOException ioe) {
} }
try { try {
System.out.println("TCPtoI2P: Close I2P"); // System.out.println("TCPtoI2P: Close I2P");
I2P.close(); I2P.close();
} catch(Exception e) { } catch(Exception e) {
} }
//System.out.println("TCPtoI2P: Closed I2P");
try { try {
System.out.println("TCPtoI2P: Close sock"); // System.out.println("TCPtoI2P: Close sock");
sock.close(); sock.close();
} catch(Exception e) { } catch(Exception e) {
} }
//System.out.println("TCPtoI2P: Closed sock"); // System.out.println("TCPtoI2P: Done.");
System.out.println("TCPtoI2P: Done.");
} }
} }
...@@ -17,7 +17,7 @@ import net.i2p.CoreVersion; ...@@ -17,7 +17,7 @@ import net.i2p.CoreVersion;
public class RouterVersion { public class RouterVersion {
public final static String ID = "$Revision: 1.548 $ $Date: 2008-06-07 23:00:00 $"; 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 String VERSION = "0.6.5";
public final static long BUILD = 2; public final static long BUILD = 3;
public static void main(String args[]) { public static void main(String args[]) {
System.out.println("I2P Router version: " + VERSION + "-" + BUILD); System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
System.out.println("Router ID: " + RouterVersion.ID); System.out.println("Router ID: " + RouterVersion.ID);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment