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:
zzz
2015-06-23 20:50:22 +00:00
parent af394e13ad
commit 975149d049
2 changed files with 3 additions and 3 deletions

View File

@@ -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);

View File

@@ -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;