diff --git a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPServer.java b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPServer.java index 61007aa8a96cb8ea7e2eb4af75264b49570c8ab8..6519d709e25aac6c8009b3cb08911c071272690b 100644 --- a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPServer.java +++ b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPServer.java @@ -527,6 +527,8 @@ public class I2PTunnelHTTPServer extends I2PTunnelServer { HashMap<String, List<String>> headers = new HashMap<String, List<String>>(); StringBuilder buf = new StringBuilder(128); + // slowloris / darkloris + long expire = ctx.clock().now() + TOTAL_HEADER_TIMEOUT; boolean ok = DataHelper.readLine(in, command); if (!ok) throw new IOException("EOF reached while reading the HTTP command [" + command.toString() + "]"); @@ -547,8 +549,6 @@ public class I2PTunnelHTTPServer extends I2PTunnelServer { if (trimmed > 0) ctx.statManager().addRateData("i2ptunnel.httpNullWorkaround", trimmed, 0); - // slowloris / darkloris - long expire = ctx.clock().now() + TOTAL_HEADER_TIMEOUT; int i = 0; while (true) { if (++i > MAX_HEADERS)