diff --git a/history.txt b/history.txt index b0547f312..1c7ca0292 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,7 @@ +2012-11-20 zzz + * Transport: Fix bug that inadvertently reduced default max + SSU connections in 0.9.2, thus reducing tunnel build success rates + 2012-11-19 kytv * Add support for kFreeBSD to NBI and CPUID * Improve kFreeBSD support in jcupid/jbigi scripts diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index f2522cd4e..7ca1a3ec2 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -18,7 +18,7 @@ public class RouterVersion { /** deprecated */ public final static String ID = "Monotone"; public final static String VERSION = CoreVersion.VERSION; - public final static long BUILD = 9; + public final static long BUILD = 10; /** for example "-test" */ public final static String EXTRA = ""; diff --git a/router/java/src/net/i2p/router/transport/TransportImpl.java b/router/java/src/net/i2p/router/transport/TransportImpl.java index 14ee0f323..a9e71d918 100644 --- a/router/java/src/net/i2p/router/transport/TransportImpl.java +++ b/router/java/src/net/i2p/router/transport/TransportImpl.java @@ -133,7 +133,7 @@ public abstract class TransportImpl implements Transport { def = MAX_CONNECTION_FACTOR * (1 + bw - Router.CAPABILITY_BW12); } // increase limit for SSU, for now - if (style.equals("udp")) + if (style.equals("SSU")) //def = def * 3 / 2; def *= 3; return _context.getProperty(maxProp, def);