Banlist: Increase ban time again for routers without netID

it's not a i2pd bug at startup that fixes itself.
This commit is contained in:
zzz
2021-12-27 08:27:11 -05:00
parent 26f34d6985
commit 242dc92397

View File

@ -53,7 +53,11 @@ public class Banlist {
public final static long BANLIST_DURATION_MAX = 30*60*1000;
public final static long BANLIST_DURATION_PARTIAL = 10*60*1000;
public final static long BANLIST_DURATION_FOREVER = 181l*24*60*60*1000; // will get rounded down to 180d on console
public final static long BANLIST_DURATION_NO_NETWORK = 6*60*60*1000;
/**
* Buggy i2pd fork
* @since 0.9.52
*/
public final static long BANLIST_DURATION_NO_NETWORK = 30*24*60*60*1000L;
public final static long BANLIST_DURATION_LOCALHOST = 2*60*60*1000;
private final static long BANLIST_CLEANER_START_DELAY = BANLIST_DURATION_PARTIAL;