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

Skip to content
Snippets Groups Projects
Unverified Commit 68273cd2 authored by zzz's avatar zzz
Browse files

SSU2: Reduce ack delay, see MR !57

See previous checkin for SSU 1.
This change dramatically reduces the measured RTT to get it much closer to the real RTT by reducing the ack delay.
With the ack delay dependent on the measured RTT, the measured RTT will increase.

Simulation results: For a denominator D in the ack delay calculation (currently 2) and a true RTT = TRTT:
For D <= about 2, measured RTT -> TRTT + 2 * TRTT/D For D >= about 4, measured RTT -> TRTT + TRTT/D

In other words, for D == 2, measured RTT -> 2 * TRTT. For a TRTT of 50, the measured RTT is 100.
D == 2 is too small. It's been like that since 2005.
Testnet results: measured RTT 80-90

This changes D to 6. measured RTT -> 6/5 * TRTT.
Simulation results: For a TRTT of 50, the measured RTT is 58.
Testnet results: measured RTT 60
parent e130f85a
No related branches found
No related tags found
No related merge requests found
...@@ -649,7 +649,7 @@ public class PeerState2 extends PeerState implements SSU2Payload.PayloadCallback ...@@ -649,7 +649,7 @@ public class PeerState2 extends PeerState implements SSU2Payload.PayloadCallback
private class ACKTimer extends SimpleTimer2.TimedEvent { private class ACKTimer extends SimpleTimer2.TimedEvent {
public ACKTimer() { public ACKTimer() {
super(_context.simpleTimer2()); super(_context.simpleTimer2());
long delta = Math.min(_rtt/2, ACK_FREQUENCY); long delta = Math.max(10, Math.min(_rtt/6, ACK_FREQUENCY));
if (_log.shouldDebug()) if (_log.shouldDebug())
_log.debug("Sending delayed ack in " + delta + ": " + PeerState2.this); _log.debug("Sending delayed ack in " + delta + ": " + PeerState2.this);
schedule(delta); schedule(delta);
......
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