Increase SSU conn limits a little more

This commit is contained in:
zzz
2009-07-11 18:47:11 +00:00
parent cf3efc11ba
commit 461af7d0a2

View File

@@ -113,7 +113,7 @@ public abstract class TransportImpl implements Transport {
} }
// increase limit for SSU, for now // increase limit for SSU, for now
if (style.equals("udp")) if (style.equals("udp"))
def = def * 4 / 3; def = def * 3 / 2;
return _context.getProperty("i2np." + style + ".maxConnections", def); return _context.getProperty("i2np." + style + ".maxConnections", def);
} }