forked from I2P_Developers/i2p.i2p
SSU: Extend establishment phase retx timeout
This commit is contained in:
@@ -77,8 +77,11 @@ class InboundEstablishState {
|
||||
IB_STATE_COMPLETE
|
||||
}
|
||||
|
||||
/** basic delay before backoff */
|
||||
private static final long RETRANSMIT_DELAY = 1500;
|
||||
/** basic delay before backoff
|
||||
* 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 */
|
||||
private static final long MAX_DELAY = 15*1000;
|
||||
|
@@ -90,8 +90,11 @@ class OutboundEstablishState {
|
||||
OB_STATE_VALIDATION_FAILED
|
||||
}
|
||||
|
||||
/** basic delay before backoff */
|
||||
private static final long RETRANSMIT_DELAY = 1500;
|
||||
/** basic delay before backoff
|
||||
* 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 */
|
||||
private static final long MAX_DELAY = 15*1000;
|
||||
|
Reference in New Issue
Block a user