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

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

SSU: Extend establishment phase retx timeout

parent cd83c485
No related branches found
No related tags found
No related merge requests found
...@@ -77,8 +77,11 @@ class InboundEstablishState { ...@@ -77,8 +77,11 @@ class InboundEstablishState {
IB_STATE_COMPLETE IB_STATE_COMPLETE
} }
/** basic delay before backoff */ /** basic delay before backoff
private static final long RETRANSMIT_DELAY = 1500; * Transmissions at 0, 3, 9 sec
* Previously: 1500 (0, 1.5, 4.5, 10.5)
*/
private static final long RETRANSMIT_DELAY = 3000;
/** max delay including backoff */ /** max delay including backoff */
private static final long MAX_DELAY = 15*1000; private static final long MAX_DELAY = 15*1000;
......
...@@ -90,8 +90,11 @@ class OutboundEstablishState { ...@@ -90,8 +90,11 @@ class OutboundEstablishState {
OB_STATE_VALIDATION_FAILED OB_STATE_VALIDATION_FAILED
} }
/** basic delay before backoff */ /** basic delay before backoff
private static final long RETRANSMIT_DELAY = 1500; * Transmissions at 0, 3, 9 sec
* Previously: 1500 (0, 1.5, 4.5, 10.5)
*/
private static final long RETRANSMIT_DELAY = 3000;
/** max delay including backoff */ /** max delay including backoff */
private static final long MAX_DELAY = 15*1000; private static final long MAX_DELAY = 15*1000;
......
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