I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 975149d0 authored by zzz's avatar zzz
Browse files

Router: Increase default outbound bandwidth to 60 KBps;

raise class L/M boundary to match so defaulted routers are still L
parent af394e13
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment