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