@@ -197,34 +197,33 @@ RTCSession.prototype.answer = function(options) {
197
197
var
198
198
// run for reply success callback
199
199
replySucceeded = function ( ) {
200
+ var timeout = JsSIP . Timers . T1 ;
201
+
200
202
self . status = C . STATUS_WAITING_FOR_ACK ;
201
203
202
204
/**
203
205
* RFC3261 13.3.1.4
204
206
* Response retransmissions cannot be accomplished by transaction layer
205
207
* since it is destroyed when receiving the first 2xx answer
206
208
*/
207
- self . timers . invite2xxTimer = window . setTimeout ( function invite2xxRetransmission ( retransmissions ) {
208
- retransmissions = retransmissions || 1 ;
209
-
210
- var timeout = JsSIP . Timers . T1 * ( Math . pow ( 2 , retransmissions ) ) ;
211
-
212
- if ( ( retransmissions * JsSIP . Timers . T1 ) <= JsSIP . Timers . T2 ) {
213
- retransmissions += 1 ;
209
+ self . timers . invite2xxTimer = window . setTimeout ( function invite2xxRetransmission ( ) {
210
+ if ( self . status !== C . STATUS_WAITING_FOR_ACK ) {
211
+ return ;
212
+ }
214
213
215
- request . reply ( 200 , null , [ 'Contact: ' + self . contact ] , body ) ;
214
+ request . reply ( 200 , null , [ 'Contact: ' + self . contact ] , body ) ;
216
215
217
- self . timers . invite2xxTimer = window . setTimeout (
218
- function ( ) {
219
- invite2xxRetransmission ( retransmissions ) ;
220
- } ,
221
- timeout
222
- ) ;
223
- } else {
224
- window . clearTimeout ( self . timers . invite2xxTimer ) ;
216
+ if ( timeout < JsSIP . Timers . T2 ) {
217
+ timeout = timeout * 2 ;
218
+ if ( timeout > JsSIP . Timers . T2 ) {
219
+ timeout = JsSIP . Timers . T2 ;
220
+ }
225
221
}
222
+ self . timers . invite2xxTimer = window . setTimeout (
223
+ invite2xxRetransmission , timeout
224
+ ) ;
226
225
} ,
227
- JsSIP . Timers . T1
226
+ timeout
228
227
) ;
229
228
230
229
/**
0 commit comments