Skip to content

Commit f4a29e9

Browse files
author
Gavin Llewellyn
committed
Improvements to 2xx retransmission behaviour
Fixes #131
1 parent 3fc4efa commit f4a29e9

File tree

1 file changed

+16
-17
lines changed

1 file changed

+16
-17
lines changed

src/RTCSession.js

+16-17
Original file line numberDiff line numberDiff line change
@@ -197,34 +197,33 @@ RTCSession.prototype.answer = function(options) {
197197
var
198198
// run for reply success callback
199199
replySucceeded = function() {
200+
var timeout = JsSIP.Timers.T1;
201+
200202
self.status = C.STATUS_WAITING_FOR_ACK;
201203

202204
/**
203205
* RFC3261 13.3.1.4
204206
* Response retransmissions cannot be accomplished by transaction layer
205207
* since it is destroyed when receiving the first 2xx answer
206208
*/
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+
}
214213

215-
request.reply(200, null, ['Contact: '+ self.contact], body);
214+
request.reply(200, null, ['Contact: '+ self.contact], body);
216215

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+
}
225221
}
222+
self.timers.invite2xxTimer = window.setTimeout(
223+
invite2xxRetransmission, timeout
224+
);
226225
},
227-
JsSIP.Timers.T1
226+
timeout
228227
);
229228

230229
/**

0 commit comments

Comments
 (0)