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

Skip to content
Snippets Groups Projects
Commit d6c8a4d9 authored by zzz's avatar zzz Committed by zzz
Browse files

2007-03-10 zzz

    * Streaming lib: Change initial RTT deviation from RTT to RTT/2
      to reduce early RTO values
parent 8e2849b7
No related branches found
No related tags found
No related merge requests found
...@@ -205,7 +205,7 @@ public class ConnectionOptions extends I2PSocketOptionsImpl { ...@@ -205,7 +205,7 @@ public class ConnectionOptions extends I2PSocketOptionsImpl {
public int getRTT() { return _rtt; } public int getRTT() { return _rtt; }
public void setRTT(int ms) { public void setRTT(int ms) {
if (_rto == 0) { if (_rto == 0) {
_rttDev = ms; _rttDev = ms / 2;
_rto = ms + ms / 2; _rto = ms + ms / 2;
} }
synchronized (_trend) { synchronized (_trend) {
......
$Id: history.txt,v 1.556 2007-03-07 00:11:46 zzz Exp $ $Id: history.txt,v 1.557 2007-03-08 13:55:18 zzz Exp $
2007-03-10 zzz
* Streaming lib: Change initial RTT deviation from RTT to RTT/2
(RFC 2988) to reduce early RTO values
2007-03-08 zzz 2007-03-08 zzz
* i2psnark changes to improve upload performance: * i2psnark changes to improve upload performance:
......
...@@ -15,9 +15,9 @@ import net.i2p.CoreVersion; ...@@ -15,9 +15,9 @@ import net.i2p.CoreVersion;
* *
*/ */
public class RouterVersion { public class RouterVersion {
public final static String ID = "$Revision: 1.492 $ $Date: 2007-03-07 00:11:45 $"; public final static String ID = "$Revision: 1.493 $ $Date: 2007-03-08 13:55:17 $";
public final static String VERSION = "0.6.1.27"; public final static String VERSION = "0.6.1.27";
public final static long BUILD = 6; public final static long BUILD = 7;
public static void main(String args[]) { public static void main(String args[]) {
System.out.println("I2P Router version: " + VERSION + "-" + BUILD); System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
System.out.println("Router ID: " + RouterVersion.ID); System.out.println("Router ID: " + RouterVersion.ID);
......
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