2004-10-27 jrandom

* Fix a strange race condition on i2cp client disconnect.
    * win98 startup fixes (thanks tester-1 and ardvark!)
    * include build scripts for the new streaming lib (which is NOT ready
      for use yet, but you can hack around with it)
(enjoy, duck)
This commit is contained in:
jrandom
2004-10-28 02:11:52 +00:00
committed by zzz
parent d5607ca195
commit 0c51f2b583
6 changed files with 60 additions and 7 deletions

View File

@ -15,9 +15,9 @@ import net.i2p.CoreVersion;
*
*/
public class RouterVersion {
public final static String ID = "$Revision: 1.61 $ $Date: 2004/10/23 20:42:35 $";
public final static String ID = "$Revision: 1.62 $ $Date: 2004/10/24 18:00:44 $";
public final static String VERSION = "0.4.1.3";
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);
System.out.println("Router ID: " + RouterVersion.ID);

View File

@ -126,7 +126,8 @@ public class ClientConnectionRunner {
synchronized (_messages) {
_messages.clear();
}
_manager.unregisterConnection(this);
if (_manager != null)
_manager.unregisterConnection(this);
if (_currentLeaseSet != null)
_context.netDb().unpublish(_currentLeaseSet);
_leaseRequest = null;