* BOB early session destroy to speed up tunnel tare-down.
This commit is contained in:
@ -2,6 +2,7 @@
|
|||||||
<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">
|
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/1">
|
||||||
<file>file:/usblv/NetBeansProjects/i2p.i2p/apps/BOB/src/net/i2p/BOB/TCPtoI2P.java</file>
|
<file>file:/usblv/NetBeansProjects/i2p.i2p/apps/BOB/src/net/i2p/BOB/MUXlisten.java</file>
|
||||||
|
<file>file:/usblv/NetBeansProjects/i2p.i2p/apps/BOB/src/net/i2p/BOB/Main.java</file>
|
||||||
</open-files>
|
</open-files>
|
||||||
</project-private>
|
</project-private>
|
||||||
|
@ -50,7 +50,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 = "0B", BEXT = "";
|
public static final String BMAJ = "00", BMIN = "00", BREV = "0C", 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;
|
||||||
|
@ -311,6 +311,19 @@ public class MUXlisten implements Runnable {
|
|||||||
} catch (InterruptedException ex) {
|
} catch (InterruptedException ex) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Hopefully nuke stuff here...
|
||||||
|
{
|
||||||
|
String boner = tg.getName();
|
||||||
|
try {
|
||||||
|
_log.warn("destroySocketManager " + boner);
|
||||||
|
socketManager.destroySocketManager();
|
||||||
|
_log.warn("destroySocketManager Successful" + boner);
|
||||||
|
} catch (Exception e) {
|
||||||
|
// nop
|
||||||
|
_log.warn("destroySocketManager Failed" + boner);
|
||||||
|
_log.warn(e.toString());
|
||||||
|
}
|
||||||
|
}
|
||||||
// zero out everything.
|
// zero out everything.
|
||||||
try {
|
try {
|
||||||
wlock();
|
wlock();
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
2010-04-16 sponge
|
||||||
|
* BOB early session destroy to speed up tunnel tare-down.
|
||||||
|
|
||||||
2010-04-15 zzz
|
2010-04-15 zzz
|
||||||
* DataHelper: Limit max length in readline()
|
* DataHelper: Limit max length in readline()
|
||||||
* Floodfills: Increase max to 100 (was 60) and min to 60 (was 45)
|
* Floodfills: Increase max to 100 (was 60) and min to 60 (was 45)
|
||||||
|
@ -18,7 +18,7 @@ public class RouterVersion {
|
|||||||
/** deprecated */
|
/** deprecated */
|
||||||
public final static String ID = "Monotone";
|
public final static String ID = "Monotone";
|
||||||
public final static String VERSION = CoreVersion.VERSION;
|
public final static String VERSION = CoreVersion.VERSION;
|
||||||
public final static long BUILD = 11;
|
public final static long BUILD = 12;
|
||||||
|
|
||||||
/** for example "-test" */
|
/** for example "-test" */
|
||||||
public final static String EXTRA = "-rc";
|
public final static String EXTRA = "-rc";
|
||||||
|
Reference in New Issue
Block a user