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

Skip to content
Snippets Groups Projects
Commit 8421ae1e authored by zzz's avatar zzz
Browse files

* Streaming: Reduce default initial window size from 12 to 6,

      to account for the MTU increase in the last release
parent d042c6b9
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ public class ConnectionOptions extends I2PSocketOptionsImpl {
public static final String PROP_SLOW_START_GROWTH_RATE_FACTOR = "i2p.streaming.slowStartGrowthRateFactor";
private static final int TREND_COUNT = 3;
static final int INITIAL_WINDOW_SIZE = 12;
static final int INITIAL_WINDOW_SIZE = 6;
static final int DEFAULT_MAX_SENDS = 8;
public static final int DEFAULT_INITIAL_RTT = 10*1000;
static final int MIN_WINDOW_SIZE = 1;
......
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