SSU: Extend establishment phase retx timeout

This commit is contained in:
zzz
2014-05-07 14:43:46 +00:00
parent cd83c48526
commit fb9a4eb87a
2 changed files with 10 additions and 4 deletions

View File

@@ -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;

View File

@@ -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;