From 7271289c1f55a7d9ea0c89b6e22b197588f6ee3a Mon Sep 17 00:00:00 2001
From: zzz <zzz@mail.i2p>
Date: Mon, 5 Jan 2009 15:13:42 +0000
Subject: [PATCH] Shitlist: Reduce max time to 30m (was 60m)

---
 router/java/src/net/i2p/router/Shitlist.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/router/java/src/net/i2p/router/Shitlist.java b/router/java/src/net/i2p/router/Shitlist.java
index 5868a15b4f..7d86926cfa 100644
--- a/router/java/src/net/i2p/router/Shitlist.java
+++ b/router/java/src/net/i2p/router/Shitlist.java
@@ -45,9 +45,9 @@ public class Shitlist {
         Set transports;
     }
     
-    public final static long SHITLIST_DURATION_MS = 40*60*1000; // 40 minute shitlist
-    public final static long SHITLIST_DURATION_MAX = 60*60*1000;
-    public final static long SHITLIST_DURATION_PARTIAL = 20*60*1000;
+    public final static long SHITLIST_DURATION_MS = 20*60*1000;
+    public final static long SHITLIST_DURATION_MAX = 30*60*1000;
+    public final static long SHITLIST_DURATION_PARTIAL = 10*60*1000;
     public final static long SHITLIST_DURATION_FOREVER = 181l*24*60*60*1000; // will get rounded down to 180d on console
     public final static long SHITLIST_CLEANER_START_DELAY = SHITLIST_DURATION_PARTIAL;
     
-- 
GitLab