From 6169904c76ab14118a759f78ca7b674e08e0cec6 Mon Sep 17 00:00:00 2001 From: zzz Date: Tue, 11 Nov 2008 13:02:45 +0000 Subject: [PATCH] oops remove extra stuff in IndexBean --- .../java/src/net/i2p/i2ptunnel/web/IndexBean.java | 13 ------------- history.txt | 2 ++ 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/web/IndexBean.java b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/web/IndexBean.java index d8e9df6f0..48d265fc2 100644 --- a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/web/IndexBean.java +++ b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/web/IndexBean.java @@ -395,19 +395,6 @@ public class IndexBean { return ""; } - public String getHTMLStreams(int tunnel) { - TunnelController tun = getController(tunnel); - if (tun != null) { - if (tunnel != 0 && - "true".equalsIgnoreCase(tun.getSharedClient()) && - isClient(tunnel)) - return "Listed above"; - else - return tun.getHTMLStreams(); - } else - return ""; - } - public String getSharedClient(int tunnel) { TunnelController tun = getController(tunnel); if (tun != null) diff --git a/history.txt b/history.txt index 3badded12..f2f2e28e7 100644 --- a/history.txt +++ b/history.txt @@ -9,6 +9,8 @@ so they won't be rejected - Reduce flusher delay to 250ms (was 500) - Flush unless window is full (was window is non-empty) + * Streaming: Enforce a minimum MTU of 512 + * I2PTunnel: Change "interactive" max window size to 16 (was 1) * NetDb: Fix a deadlock caused by last checkin 2008-11-09 zzz