Skip to content

Commit a8a7627

Browse files
committed
Enhance RTCPeerconnection SDP error handling. Thanks @ibc for reporting.
1 parent d4e079b commit a8a7627

File tree

2 files changed

+26
-24
lines changed

2 files changed

+26
-24
lines changed

src/MediaSession.js

+20-18
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ JsSIP.MediaSession.prototype = {
4949
}
5050

5151
/** @private */
52-
function onGetUserMediaFailure() {
53-
onFailure();
52+
function onGetUserMediaFailure(e) {
53+
onFailure(e);
5454
}
5555

5656
this.getUserMedia(mediaType, onGetUserMediaSuccess, onGetUserMediaFailure);
@@ -82,16 +82,22 @@ JsSIP.MediaSession.prototype = {
8282
// add stream to peerConnection
8383
self.peerConnection.addStream(stream);
8484

85-
self.peerConnection.setRemoteDescription(new window.RTCSessionDescription({type:'offer', sdp:sdp}));
86-
87-
// Set local description and start Ice.
88-
self.peerConnection.createAnswer(function(sessionDescription){
89-
self.peerConnection.setLocalDescription(sessionDescription);
90-
});
85+
self.peerConnection.setRemoteDescription(
86+
new window.RTCSessionDescription({type:'offer', sdp:sdp}),
87+
function() {
88+
self.peerConnection.createAnswer(
89+
function(sessionDescription){
90+
self.peerConnection.setLocalDescription(sessionDescription);
91+
},
92+
onSdpFailure
93+
);
94+
},
95+
onSdpFailure
96+
);
9197
}
9298

93-
function onGetUserMediaFailure() {
94-
onMediaFailure();
99+
function onGetUserMediaFailure(e) {
100+
onMediaFailure(e);
95101
}
96102

97103
self.getUserMedia({'audio':true, 'video':true}, onGetUserMediaSuccess, onGetUserMediaFailure);
@@ -185,8 +191,8 @@ JsSIP.MediaSession.prototype = {
185191
onSuccess(stream);
186192
}
187193

188-
function getFailure() {
189-
onFailure();
194+
function getFailure(e) {
195+
onFailure(e);
190196
}
191197

192198
// Get User Media
@@ -206,12 +212,8 @@ JsSIP.MediaSession.prototype = {
206212
if (type === 'offer') {
207213
console.log(JsSIP.c.LOG_MEDIA_SESSION +'re-Invite received');
208214
} else if (type === 'answer') {
209-
try {
210-
this.peerConnection.setRemoteDescription(new window.RTCSessionDescription({type:'answer', sdp:sdp}));
211-
onSuccess();
212-
} catch (e) {
213-
onFailure(e);
214-
}
215+
this.peerConnection.setRemoteDescription(
216+
new window.RTCSessionDescription({type:'answer', sdp:sdp}), onSuccess, onFailure);
215217
}
216218
}
217219
};

src/Session.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ JsSIP.Session.prototype.receiveInitialRequest = function(ua, request) {
373373
* @param {HTMLVideoElement} remoteView
374374
*/
375375
this.answer = function(selfView, remoteView) {
376-
var offer, onMediaSuccess, onMediaFailure, onSdpFailure;
376+
var offer, onSuccess, onMediaFailure, onSdpFailure;
377377

378378
// Check UA Status
379379
JsSIP.utils.checkUAStatus(this.ua);
@@ -385,7 +385,7 @@ JsSIP.Session.prototype.receiveInitialRequest = function(ua, request) {
385385

386386
offer = request.body;
387387

388-
onMediaSuccess = function() {
388+
onSuccess = function() {
389389
var sdp = session.mediaSession.peerConnection.localDescription.sdp;
390390

391391
if(!session.createConfirmedDialog(request, 'UAS')) {
@@ -435,7 +435,7 @@ JsSIP.Session.prototype.receiveInitialRequest = function(ua, request) {
435435

436436
//Initialize Media Session
437437
session.mediaSession = new JsSIP.MediaSession(session, selfView, remoteView);
438-
session.mediaSession.startCallee(onMediaSuccess, onMediaFailure, onSdpFailure, offer);
438+
session.mediaSession.startCallee(onSuccess, onMediaFailure, onSdpFailure, offer);
439439
};
440440

441441
// Fire 'call' event callback
@@ -526,7 +526,7 @@ JsSIP.Session.prototype.receiveResponse = function(response) {
526526
return;
527527
}
528528

529-
this.acceptAndTerminate(response,'SIP ;cause= 400 ;text= "Missing session description"');
529+
this.acceptAndTerminate(response,'SIP ;cause=400 ;text= "Missing session description"');
530530
this.failed('remote', response, JsSIP.c.causes.BAD_MEDIA_DESCRIPTION);
531531

532532
break;
@@ -561,7 +561,7 @@ JsSIP.Session.prototype.receiveResponse = function(response) {
561561
*/
562562
function(e) {
563563
console.warn(e);
564-
session.acceptAndTerminate(response, 'SIP ;cause= 488 ;text= "Not Acceptable Here"');
564+
session.acceptAndTerminate(response, 'SIP ;cause=488 ;text="Not Acceptable Here"');
565565
session.failed('remote', response, JsSIP.c.causes.BAD_MEDIA_DESCRIPTION);
566566
}
567567
);
@@ -947,7 +947,7 @@ JsSIP.Session.prototype.sendInitialRequest = function(mediaType) {
947947
request_sender.send();
948948
}
949949

950-
function onMediaFailure(fail,e) {
950+
function onMediaFailure(e) {
951951
if (self.status !== JsSIP.c.SESSION_TERMINATED) {
952952
console.log(JsSIP.c.LOG_CLIENT_INVITE_SESSION +'Media Access denied');
953953
self.failed('local', null, JsSIP.c.causes.USER_DENIED_MEDIA_ACCESS);

0 commit comments

Comments
 (0)