forked from I2P_Developers/i2p.i2p
reduce RI expiration again
This commit is contained in:
@ -1,3 +1,6 @@
|
||||
* 2011-10-19 zzz
|
||||
* NetDB: Reduce RI max expiration again
|
||||
|
||||
* 2011-10-18 zzz
|
||||
* StoreJob: Ensure nonzero token
|
||||
* Tunnels: Connection limit mitigation:
|
||||
|
@ -18,10 +18,10 @@ public class RouterVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Monotone";
|
||||
public final static String VERSION = CoreVersion.VERSION;
|
||||
public final static long BUILD = 3;
|
||||
public final static long BUILD = 4;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
public final static String EXTRA = "-rc";
|
||||
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;
|
||||
public static void main(String args[]) {
|
||||
System.out.println("I2P Router version: " + FULL_VERSION);
|
||||
|
@ -121,7 +121,7 @@ public class KademliaNetworkDatabaseFacade extends NetworkDatabaseFacade {
|
||||
* limits for accepting a dbDtore of a router (unless we dont
|
||||
* know anyone or just started up) -- see validate() below
|
||||
*/
|
||||
private final static long ROUTER_INFO_EXPIRATION = 36*60*60*1000l;
|
||||
private final static long ROUTER_INFO_EXPIRATION = 27*60*60*1000l;
|
||||
private final static long ROUTER_INFO_EXPIRATION_MIN = 90*60*1000l;
|
||||
private final static long ROUTER_INFO_EXPIRATION_SHORT = 75*60*1000l;
|
||||
private final static long ROUTER_INFO_EXPIRATION_FLOODFILL = 60*60*1000l;
|
||||
|
Reference in New Issue
Block a user