forked from I2P_Developers/i2p.i2p
Router: Increase default outbound bandwidth to 60 KBps;
raise class L/M boundary to match so defaulted routers are still L
This commit is contained in:
@@ -911,7 +911,7 @@ public class Router implements RouterClock.ClockShiftListener {
|
||||
ri.addCapability(force.charAt(0));
|
||||
} else if (bwLim < 12) {
|
||||
ri.addCapability(CAPABILITY_BW12);
|
||||
} else if (bwLim <= 32) {
|
||||
} else if (bwLim <= 48) {
|
||||
ri.addCapability(CAPABILITY_BW32);
|
||||
} else if (bwLim <= 64) {
|
||||
ri.addCapability(CAPABILITY_BW64);
|
||||
|
@@ -56,9 +56,9 @@ public class FIFOBandwidthRefiller implements Runnable {
|
||||
* of moving the default bandwidth class from L to M, or maybe
|
||||
* adjusting bandwidth class boundaries.
|
||||
*/
|
||||
public static final int DEFAULT_OUTBOUND_BANDWIDTH = 40;
|
||||
public static final int DEFAULT_OUTBOUND_BANDWIDTH = 60;
|
||||
public static final int DEFAULT_INBOUND_BURST_BANDWIDTH = 96;
|
||||
public static final int DEFAULT_OUTBOUND_BURST_BANDWIDTH = 40;
|
||||
public static final int DEFAULT_OUTBOUND_BURST_BANDWIDTH = 60;
|
||||
|
||||
public static final int DEFAULT_BURST_SECONDS = 60;
|
||||
|
||||
|
Reference in New Issue
Block a user