dont call exit

This commit is contained in:
zzz
2010-03-31 18:33:40 +00:00
parent 71aa0cfba7
commit 605dfec5e7
3 changed files with 10 additions and 3 deletions

View File

@ -213,7 +213,7 @@ public class I2PTunnelServer extends I2PTunnelTask implements Runnable {
sockMgr.getSession().destroySession(); sockMgr.getSession().destroySession();
} catch (I2PException ex) { } catch (I2PException ex) {
_log.error("Error destroying the session", ex); _log.error("Error destroying the session", ex);
System.exit(1); //System.exit(1);
} }
l.log("Server shut down."); l.log("Server shut down.");
open = false; open = false;

View File

@ -1,4 +1,11 @@
2010-03-31 zzz
* FloodfillPeerSelector: Adjust rankings to try to
improve LeaseSet lookups
* HostsTxtNamingService: Don't load the whole hosts.txt
into memory for every lookup
2010-03-29 zzz 2010-03-29 zzz
* build.xml: Prep for a windows-only pkg
* configclients.jsp: * configclients.jsp:
- Always show start button for webapps and plugins - Always show start button for webapps and plugins
* configclients.jsp, configupdate.jsp: * configclients.jsp, configupdate.jsp:

View File

@ -13,12 +13,12 @@ import net.i2p.CoreVersion;
/** /**
* Expose a version string * Expose a version string
* *
n */ */
public class RouterVersion { 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 = 3; public final static long BUILD = 4;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = ""; public final static String EXTRA = "";