reduce floodfill max conns slightly; fix clients start button
This commit is contained in:
@ -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))
|
||||
|
@ -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.
|
||||
|
||||
|
@ -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";
|
||||
|
@ -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 */
|
||||
|
Reference in New Issue
Block a user