* Transports: Lower conn limit factor to 50 (was 60)
This commit is contained in:
@ -92,9 +92,9 @@ public abstract class TransportImpl implements Transport {
|
|||||||
public int countActiveSendPeers() { return 0; }
|
public int countActiveSendPeers() { return 0; }
|
||||||
|
|
||||||
/** Default is 500 for floodfills... */
|
/** Default is 500 for floodfills... */
|
||||||
public static final int DEFAULT_MAX_CONNECTIONS = 500;
|
private static final int DEFAULT_MAX_CONNECTIONS = 500;
|
||||||
/** ...and 60/120/180/240/300 for BW Tiers K/L/M/N/O */
|
/** ...and 50/100/150/200/250 for BW Tiers K/L/M/N/O */
|
||||||
public static final int MAX_CONNECTION_FACTOR = 60;
|
private static final int MAX_CONNECTION_FACTOR = 50;
|
||||||
/** Per-transport connection limit */
|
/** Per-transport connection limit */
|
||||||
public int getMaxConnections() {
|
public int getMaxConnections() {
|
||||||
String style = getStyle();
|
String style = getStyle();
|
||||||
|
Reference in New Issue
Block a user