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

@@ -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 */