reduce floodfill max conns slightly; fix clients start button

This commit is contained in:
zzz
2010-04-18 23:06:04 +00:00
parent 9916ef4d3d
commit 7c3e4fd947
4 changed files with 9 additions and 3 deletions

View File

@ -43,7 +43,7 @@ public class ConfigClientsHelper extends HelperBase {
renderForm(buf, ""+cur, ca.clientName, false, !ca.disabled,
"webConsole".equals(ca.clientName) || "Web console".equals(ca.clientName),
ca.className + ((ca.args != null) ? " " + ca.args : ""), (""+cur).equals(_edit),
true, false, false, true, !ca.disabled);
true, false, false, true, ca.disabled);
}
if ("new".equals(_edit))

View File

@ -1,3 +1,9 @@
2010-04-18 zzz
* configclients.jsp: Start button logic for clients was inverted
* Console: IRC links in readmes and initialNews
* I2PTunnelServer: Debug log incoming conns
* Transport: Reduce floodfill max NTCP conns to 425 (was 500)
2010-04-16 sponge
* BOB early session destroy to speed up tunnel tare-down.

View File

@ -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 = 13;
public final static long BUILD = 14;
/** for example "-test" */
public final static String EXTRA = "-rc";

View File

@ -93,7 +93,7 @@ public abstract class TransportImpl implements Transport {
public int countActiveSendPeers() { return 0; }
/** Default is 500 for floodfills... */
private static final int DEFAULT_MAX_CONNECTIONS = 500;
private static final int DEFAULT_MAX_CONNECTIONS = 425;
/** ...and 50/100/150/200/250 for BW Tiers K/L/M/N/O */
private static final int MAX_CONNECTION_FACTOR = 50;
/** Per-transport connection limit */