2005-01-09 jrandom

* Removed a longstanding bug that had caused unnecessary router identity
      churn due to clock skew
    * Temporarily sanity check within the streaming lib for long pending
      writes
    * Added support for a blog-wide logo to Syndie, and automated the pushing
      of updated extended blog info data along side the metadata.
This commit is contained in:
jrandom
2006-01-09 22:22:41 +00:00
committed by zzz
parent 002aed145f
commit 934f4082f1
11 changed files with 275 additions and 27 deletions

View File

@@ -15,9 +15,9 @@ import net.i2p.CoreVersion;
*
*/
public class RouterVersion {
public final static String ID = "$Revision: 1.325 $ $Date: 2006/01/04 21:48:17 $";
public final static String ID = "$Revision: 1.326 $ $Date: 2006/01/09 01:33:30 $";
public final static String VERSION = "0.6.1.8";
public final static long BUILD = 9;
public final static long BUILD = 10;
public static void main(String args[]) {
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
System.out.println("Router ID: " + RouterVersion.ID);

View File

@@ -303,8 +303,9 @@ public class KademliaNetworkDatabaseFacade extends NetworkDatabaseFacade {
try {
publish(ri);
} catch (IllegalArgumentException iae) {
_log.log(Log.CRIT, "Our local router info is b0rked, clearing from scratch", iae);
_context.router().rebuildNewIdentity();
_context.router().rebuildRouterInfo(true);
//_log.log(Log.CRIT, "Our local router info is b0rked, clearing from scratch", iae);
//_context.router().rebuildNewIdentity();
}
}