Adds config options to filter out TCP or UDP candidates (for the purpose

of forcing one or the other in automated tests).
This commit is contained in:
Boris Grozev 2015-09-21 11:28:49 -05:00
parent 8725b80793
commit 62d3b749bb
4 changed files with 117 additions and 44 deletions

View File

@ -43,6 +43,11 @@ var config = {
// The URL to the Firefox extension for desktop sharing. // The URL to the Firefox extension for desktop sharing.
desktopSharingFirefoxExtensionURL: null, desktopSharingFirefoxExtensionURL: null,
// Disables ICE/UDP by filtering out local and remote UDP candidates in signalling.
webrtcIceUdpDisable: false,
// Disables ICE/TCP by filtering out local and remote TCP candidates in signalling.
webrtcIceTcpDisable: false,
openSctp: true, // Toggle to enable/disable SCTP channels openSctp: true, // Toggle to enable/disable SCTP channels
disableStats: false, disableStats: false,
disableAudioLevels: false, disableAudioLevels: false,

View File

@ -11,7 +11,7 @@
<meta itemprop="image" content="/images/jitsilogo.png"/> <meta itemprop="image" content="/images/jitsilogo.png"/>
<script src="https://api.callstats.io/static/callstats.min.js"></script> <script src="https://api.callstats.io/static/callstats.min.js"></script>
<script src="libs/jquery-2.1.1.min.js"></script> <script src="libs/jquery-2.1.1.min.js"></script>
<script src="config.js?v=13"></script><!-- adapt to your needs, i.e. set hosts and bosh path --> <script src="config.js?v=14"></script><!-- adapt to your needs, i.e. set hosts and bosh path -->
<script src="libs/strophe/strophe.min.js?v=2"></script> <script src="libs/strophe/strophe.min.js?v=2"></script>
<script src="libs/strophe/strophe.disco.min.js?v=1"></script> <script src="libs/strophe/strophe.disco.min.js?v=1"></script>
<script src="libs/strophe/strophe.caps.jsonly.min.js?v=1"></script> <script src="libs/strophe/strophe.caps.jsonly.min.js?v=1"></script>

View File

@ -56,6 +56,7 @@ function JingleSessionPC(me, sid, connection, service, eventEmitter) {
// stable and the ice connection state is connected. // stable and the ice connection state is connected.
this.modifySourcesQueue.pause(); this.modifySourcesQueue.pause();
} }
//XXX this is badly broken...
JingleSessionPC.prototype = JingleSession.prototype; JingleSessionPC.prototype = JingleSession.prototype;
JingleSessionPC.prototype.constructor = JingleSessionPC; JingleSessionPC.prototype.constructor = JingleSessionPC;
@ -95,6 +96,15 @@ JingleSessionPC.prototype.doInitialize = function () {
this); this);
this.peerconnection.onicecandidate = function (event) { this.peerconnection.onicecandidate = function (event) {
var protocol;
if (event && event.candidate) {
protocol = (typeof event.candidate.protocol === 'string')
? event.candidate.protocol.toLowerCase() : '';
if ((config.webrtcIceTcpDisable && protocol == 'tcp') ||
(config.webrtcIceUdpDisable && protocol == 'udp')) {
return;
}
}
self.sendIceCandidate(event.candidate); self.sendIceCandidate(event.candidate);
}; };
this.peerconnection.onaddstream = function (event) { this.peerconnection.onaddstream = function (event) {
@ -229,6 +239,12 @@ JingleSessionPC.prototype.accept = function () {
pranswer.sdp = pranswer.sdp.replace('a=inactive', 'a=sendrecv'); pranswer.sdp = pranswer.sdp.replace('a=inactive', 'a=sendrecv');
} }
var prsdp = new SDP(pranswer.sdp); var prsdp = new SDP(pranswer.sdp);
if (config.webrtcIceTcpDisable) {
prsdp.removeTcpCandidates = true;
}
if (config.webrtcIceUdpDisable) {
prsdp.removeUdpCandidates = true;
}
var accept = $iq({to: this.peerjid, var accept = $iq({to: this.peerjid,
type: 'set'}) type: 'set'})
.c('jingle', {xmlns: 'urn:xmpp:jingle:1', .c('jingle', {xmlns: 'urn:xmpp:jingle:1',
@ -337,6 +353,12 @@ JingleSessionPC.prototype.sendIceCandidate = function (candidate) {
initiator: this.initiator, initiator: this.initiator,
sid: this.sid}); sid: this.sid});
this.localSDP = new SDP(this.peerconnection.localDescription.sdp); this.localSDP = new SDP(this.peerconnection.localDescription.sdp);
if (config.webrtcIceTcpDisable) {
this.localSDP.removeTcpCandidates = true;
}
if (config.webrtcIceUdpDisable) {
this.localSDP.removeUdpCandidates = true;
}
var sendJingle = function (ssrc) { var sendJingle = function (ssrc) {
if(!ssrc) if(!ssrc)
ssrc = {}; ssrc = {};
@ -533,8 +555,14 @@ JingleSessionPC.prototype.getSsrcOwner = function (ssrc) {
}; };
JingleSessionPC.prototype.setRemoteDescription = function (elem, desctype) { JingleSessionPC.prototype.setRemoteDescription = function (elem, desctype) {
//console.log('setting remote description... ', desctype);
this.remoteSDP = new SDP(''); this.remoteSDP = new SDP('');
if (config.webrtcIceTcpDisable) {
this.remoteSDP.removeTcpCandidates = true;
}
if (config.webrtcIceUdpDisable) {
this.remoteSDP.removeUdpCandidates = true;
}
this.remoteSDP.fromJingle(elem); this.remoteSDP.fromJingle(elem);
this.readSsrcInfo($(elem).find(">content")); this.readSsrcInfo($(elem).find(">content"));
if (this.peerconnection.remoteDescription !== null) { if (this.peerconnection.remoteDescription !== null) {
@ -577,6 +605,10 @@ JingleSessionPC.prototype.setRemoteDescription = function (elem, desctype) {
); );
}; };
/**
* Adds remote ICE candidates to this Jingle session.
* @param elem An array of Jingle "content" elements?
*/
JingleSessionPC.prototype.addIceCandidate = function (elem) { JingleSessionPC.prototype.addIceCandidate = function (elem) {
var self = this; var self = this;
if (this.peerconnection.signalingState == 'closed') { if (this.peerconnection.signalingState == 'closed') {
@ -587,7 +619,7 @@ JingleSessionPC.prototype.addIceCandidate = function (elem) {
// create a PRANSWER for setRemoteDescription // create a PRANSWER for setRemoteDescription
if (!this.remoteSDP) { if (!this.remoteSDP) {
var cobbled = 'v=0\r\n' + var cobbled = 'v=0\r\n' +
'o=- ' + '1923518516' + ' 2 IN IP4 0.0.0.0\r\n' +// FIXME 'o=- 1923518516 2 IN IP4 0.0.0.0\r\n' +// FIXME
's=-\r\n' + 's=-\r\n' +
't=0 0\r\n'; 't=0 0\r\n';
// first, take some things from the local description // first, take some things from the local description
@ -672,6 +704,14 @@ JingleSessionPC.prototype.addIceCandidate = function (elem) {
// TODO: check ice-pwd and ice-ufrag? // TODO: check ice-pwd and ice-ufrag?
$(this).find('transport>candidate').each(function () { $(this).find('transport>candidate').each(function () {
var line, candidate; var line, candidate;
var protocol = this.getAttribute('protocol');
protocol =
(typeof protocol === 'string') ? protocol.toLowerCase() : '';
if ((config.webrtcIceTcpDisable && protocol == 'tcp') ||
(config.webrtcIceUdpDisable && protocol == 'udp')) {
return;
}
line = SDPUtil.candidateFromJingle(this); line = SDPUtil.candidateFromJingle(this);
candidate = new RTCIceCandidate({sdpMLineIndex: idx, candidate = new RTCIceCandidate({sdpMLineIndex: idx,
sdpMid: name, sdpMid: name,
@ -724,6 +764,12 @@ JingleSessionPC.prototype.createdAnswer = function (sdp, provisional) {
initiator: self.initiator, initiator: self.initiator,
responder: self.responder, responder: self.responder,
sid: self.sid }); sid: self.sid });
if (config.webrtcIceTcpDisable) {
self.localSDP.removeTcpCandidates = true;
}
if (config.webrtcIceUdpDisable) {
self.localSDP.removeUdpCandidates = true;
}
self.localSDP.toJingle( self.localSDP.toJingle(
accept, accept,
self.initiator == self.me ? 'initiator' : 'responder', self.initiator == self.me ? 'initiator' : 'responder',

View File

@ -4,6 +4,18 @@ var SDPUtil = require("./SDPUtil");
// SDP STUFF // SDP STUFF
function SDP(sdp) { function SDP(sdp) {
/**
* Whether or not to remove TCP ice candidates when translating from/to jingle.
* @type {boolean}
*/
this.removeTcpCandidates = false;
/**
* Whether or not to remove UDP ice candidates when translating from/to jingle.
* @type {boolean}
*/
this.removeUdpCandidates = false;
this.media = sdp.split('\r\nm='); this.media = sdp.split('\r\nm=');
for (var i = 1; i < this.media.length; i++) { for (var i = 1; i < this.media.length; i++) {
this.media[i] = 'm=' + this.media[i]; this.media[i] = 'm=' + this.media[i];
@ -14,6 +26,7 @@ function SDP(sdp) {
this.session = this.media.shift() + '\r\n'; this.session = this.media.shift() + '\r\n';
this.raw = this.session + this.media.join(''); this.raw = this.session + this.media.join('');
} }
/** /**
* Returns map of MediaChannel mapped per channel idx. * Returns map of MediaChannel mapped per channel idx.
*/ */
@ -63,18 +76,16 @@ SDP.prototype.getMediaSsrcMap = function() {
*/ */
SDP.prototype.containsSSRC = function(ssrc) { SDP.prototype.containsSSRC = function(ssrc) {
var medias = this.getMediaSsrcMap(); var medias = this.getMediaSsrcMap();
var contains = false;
Object.keys(medias).forEach(function(mediaindex){ Object.keys(medias).forEach(function(mediaindex){
var media = medias[mediaindex]; var media = medias[mediaindex];
//console.log("Check", channel, ssrc); //console.log("Check", channel, ssrc);
if(Object.keys(media.ssrcs).indexOf(ssrc) != -1){ if(Object.keys(media.ssrcs).indexOf(ssrc) != -1){
contains = true; return true;
} }
}); });
return contains; return false;
}; };
// remove iSAC and CN from SDP // remove iSAC and CN from SDP
SDP.prototype.mangle = function () { SDP.prototype.mangle = function () {
var i, j, mline, lines, rtpmap, newdesc; var i, j, mline, lines, rtpmap, newdesc;
@ -129,8 +140,7 @@ SDP.prototype.removeMediaLines = function(mediaindex, prefix) {
// add content's to a jingle element // add content's to a jingle element
SDP.prototype.toJingle = function (elem, thecreator, ssrcs) { SDP.prototype.toJingle = function (elem, thecreator, ssrcs) {
// console.log("SSRC" + ssrcs["audio"] + " - " + ssrcs["video"]); // console.log("SSRC" + ssrcs["audio"] + " - " + ssrcs["video"]);
var i, j, k, mline, ssrc, rtpmap, tmp, line, lines; var i, j, k, mline, ssrc, rtpmap, tmp, lines;
var self = this;
// new bundle plan // new bundle plan
if (SDPUtil.find_line(this.session, 'a=group:')) { if (SDPUtil.find_line(this.session, 'a=group:')) {
lines = SDPUtil.find_lines(this.session, 'a=group:'); lines = SDPUtil.find_lines(this.session, 'a=group:');
@ -155,13 +165,12 @@ SDP.prototype.toJingle = function (elem, thecreator, ssrcs) {
if (SDPUtil.find_line(this.media[i], 'a=ssrc:')) { if (SDPUtil.find_line(this.media[i], 'a=ssrc:')) {
ssrc = SDPUtil.find_line(this.media[i], 'a=ssrc:').substring(7).split(' ')[0]; // take the first ssrc = SDPUtil.find_line(this.media[i], 'a=ssrc:').substring(7).split(' ')[0]; // take the first
} else { } else {
if(ssrcs && ssrcs[mline.media]) if(ssrcs && ssrcs[mline.media]) {
{
ssrc = ssrcs[mline.media]; ssrc = ssrcs[mline.media];
} } else {
else
ssrc = false; ssrc = false;
} }
}
elem.c('content', {creator: thecreator, name: mline.media}); elem.c('content', {creator: thecreator, name: mline.media});
if (SDPUtil.find_line(this.media[i], 'a=mid:')) { if (SDPUtil.find_line(this.media[i], 'a=mid:')) {
@ -170,8 +179,7 @@ SDP.prototype.toJingle = function (elem, thecreator, ssrcs) {
elem.attrs({ name: mid }); elem.attrs({ name: mid });
} }
if (SDPUtil.find_line(this.media[i], 'a=rtpmap:').length) if (SDPUtil.find_line(this.media[i], 'a=rtpmap:').length) {
{
elem.c('description', elem.c('description',
{xmlns: 'urn:xmpp:jingle:apps:rtp:1', {xmlns: 'urn:xmpp:jingle:apps:rtp:1',
media: mline.media }); media: mline.media });
@ -188,7 +196,7 @@ SDP.prototype.toJingle = function (elem, thecreator, ssrcs) {
elem.c('parameter', tmp[k]).up(); elem.c('parameter', tmp[k]).up();
} }
} }
this.RtcpFbToJingle(i, elem, mline.fmt[j]); // XEP-0293 -- map a=rtcp-fb this.rtcpFbToJingle(i, elem, mline.fmt[j]); // XEP-0293 -- map a=rtcp-fb
elem.up(); elem.up();
} }
@ -208,7 +216,7 @@ SDP.prototype.toJingle = function (elem, thecreator, ssrcs) {
var ssrclines = SDPUtil.find_lines(this.media[i], 'a=ssrc:'); var ssrclines = SDPUtil.find_lines(this.media[i], 'a=ssrc:');
if(ssrclines.length > 0) { if(ssrclines.length > 0) {
ssrclines.forEach(function (line) { ssrclines.forEach(function (line) {
idx = line.indexOf(' '); var idx = line.indexOf(' ');
var linessrc = line.substr(0, idx).substr(7); var linessrc = line.substr(0, idx).substr(7);
if (linessrc != ssrc) { if (linessrc != ssrc) {
elem.up(); elem.up();
@ -229,9 +237,7 @@ SDP.prototype.toJingle = function (elem, thecreator, ssrcs) {
} }
elem.up(); elem.up();
}); });
} } else {
else
{
elem.up(); elem.up();
elem.c('source', { ssrc: ssrc, xmlns: 'urn:xmpp:jingle:apps:rtp:ssma:0' }); elem.c('source', { ssrc: ssrc, xmlns: 'urn:xmpp:jingle:apps:rtp:ssma:0' });
elem.c('parameter'); elem.c('parameter');
@ -261,7 +267,7 @@ SDP.prototype.toJingle = function (elem, thecreator, ssrcs) {
// XEP-0339 handle ssrc-group attributes // XEP-0339 handle ssrc-group attributes
var ssrc_group_lines = SDPUtil.find_lines(this.media[i], 'a=ssrc-group:'); var ssrc_group_lines = SDPUtil.find_lines(this.media[i], 'a=ssrc-group:');
ssrc_group_lines.forEach(function(line) { ssrc_group_lines.forEach(function(line) {
idx = line.indexOf(' '); var idx = line.indexOf(' ');
var semantics = line.substr(0, idx).substr(13); var semantics = line.substr(0, idx).substr(13);
var ssrcs = line.substr(14 + semantics.length).split(' '); var ssrcs = line.substr(14 + semantics.length).split(' ');
if (ssrcs.length) { if (ssrcs.length) {
@ -280,7 +286,7 @@ SDP.prototype.toJingle = function (elem, thecreator, ssrcs) {
} }
// XEP-0293 -- map a=rtcp-fb:* // XEP-0293 -- map a=rtcp-fb:*
this.RtcpFbToJingle(i, elem, '*'); this.rtcpFbToJingle(i, elem, '*');
// XEP-0294 // XEP-0294
if (SDPUtil.find_line(this.media[i], 'a=extmap:')) { if (SDPUtil.find_line(this.media[i], 'a=extmap:')) {
@ -314,7 +320,7 @@ SDP.prototype.toJingle = function (elem, thecreator, ssrcs) {
} }
// map ice-ufrag/pwd, dtls fingerprint, candidates // map ice-ufrag/pwd, dtls fingerprint, candidates
this.TransportToJingle(i, elem); this.transportToJingle(i, elem);
if (SDPUtil.find_line(this.media[i], 'a=sendrecv', this.session)) { if (SDPUtil.find_line(this.media[i], 'a=sendrecv', this.session)) {
elem.attrs({senders: 'both'}); elem.attrs({senders: 'both'});
@ -335,25 +341,24 @@ SDP.prototype.toJingle = function (elem, thecreator, ssrcs) {
return elem; return elem;
}; };
SDP.prototype.TransportToJingle = function (mediaindex, elem) { SDP.prototype.transportToJingle = function (mediaindex, elem) {
var i = mediaindex; var tmp, sctpmap, sctpAttrs, fingerprints;
var tmp;
var self = this; var self = this;
elem.c('transport'); elem.c('transport');
// XEP-0343 DTLS/SCTP // XEP-0343 DTLS/SCTP
if (SDPUtil.find_line(this.media[mediaindex], 'a=sctpmap:').length) if (SDPUtil.find_line(this.media[mediaindex], 'a=sctpmap:').length)
{ {
var sctpmap = SDPUtil.find_line( sctpmap = SDPUtil.find_line(
this.media[i], 'a=sctpmap:', self.session); this.media[mediaindex], 'a=sctpmap:', self.session);
if (sctpmap) if (sctpmap)
{ {
var sctpAttrs = SDPUtil.parse_sctpmap(sctpmap); sctpAttrs = SDPUtil.parse_sctpmap(sctpmap);
elem.c('sctpmap', elem.c('sctpmap',
{ {
xmlns: 'urn:xmpp:jingle:transports:dtls-sctp:1', xmlns: 'urn:xmpp:jingle:transports:dtls-sctp:1',
number: sctpAttrs[0], /* SCTP port */ number: sctpAttrs[0], /* SCTP port */
protocol: sctpAttrs[1], /* protocol */ protocol: sctpAttrs[1] /* protocol */
}); });
// Optional stream count attribute // Optional stream count attribute
if (sctpAttrs.length > 2) if (sctpAttrs.length > 2)
@ -362,7 +367,7 @@ SDP.prototype.TransportToJingle = function (mediaindex, elem) {
} }
} }
// XEP-0320 // XEP-0320
var fingerprints = SDPUtil.find_lines(this.media[mediaindex], 'a=fingerprint:', this.session); fingerprints = SDPUtil.find_lines(this.media[mediaindex], 'a=fingerprint:', this.session);
fingerprints.forEach(function(line) { fingerprints.forEach(function(line) {
tmp = SDPUtil.parse_fingerprint(line); tmp = SDPUtil.parse_fingerprint(line);
tmp.xmlns = 'urn:xmpp:jingle:apps:dtls:0'; tmp.xmlns = 'urn:xmpp:jingle:apps:dtls:0';
@ -383,14 +388,22 @@ SDP.prototype.TransportToJingle = function (mediaindex, elem) {
if (SDPUtil.find_line(this.media[mediaindex], 'a=candidate:', this.session)) { // add any a=candidate lines if (SDPUtil.find_line(this.media[mediaindex], 'a=candidate:', this.session)) { // add any a=candidate lines
var lines = SDPUtil.find_lines(this.media[mediaindex], 'a=candidate:', this.session); var lines = SDPUtil.find_lines(this.media[mediaindex], 'a=candidate:', this.session);
lines.forEach(function (line) { lines.forEach(function (line) {
elem.c('candidate', SDPUtil.candidateToJingle(line)).up(); var candidate = SDPUtil.candidateToJingle(line);
var protocol = (candidate &&
typeof candidate.protocol === 'string')
? candidate.protocol.toLowerCase() : '';
if ((self.removeTcpCandidates && protocol === 'tcp') ||
(self.removeUdpCandidates && protocol === 'udp')) {
return;
}
elem.c('candidate', candidate).up();
}); });
} }
} }
elem.up(); // end of transport elem.up(); // end of transport
}; };
SDP.prototype.RtcpFbToJingle = function (mediaindex, elem, payloadtype) { // XEP-0293 SDP.prototype.rtcpFbToJingle = function (mediaindex, elem, payloadtype) { // XEP-0293
var lines = SDPUtil.find_lines(this.media[mediaindex], 'a=rtcp-fb:' + payloadtype); var lines = SDPUtil.find_lines(this.media[mediaindex], 'a=rtcp-fb:' + payloadtype);
lines.forEach(function (line) { lines.forEach(function (line) {
var tmp = SDPUtil.parse_rtcpfb(line); var tmp = SDPUtil.parse_rtcpfb(line);
@ -407,7 +420,7 @@ SDP.prototype.RtcpFbToJingle = function (mediaindex, elem, payloadtype) { // XEP
}); });
}; };
SDP.prototype.RtcpFbFromJingle = function (elem, payloadtype) { // XEP-0293 SDP.prototype.rtcpFbFromJingle = function (elem, payloadtype) { // XEP-0293
var media = ''; var media = '';
var tmp = elem.find('>rtcp-fb-trr-int[xmlns="urn:xmpp:jingle:apps:rtp:rtcp-fb:0"]'); var tmp = elem.find('>rtcp-fb-trr-int[xmlns="urn:xmpp:jingle:apps:rtp:rtcp-fb:0"]');
if (tmp.length) { if (tmp.length) {
@ -434,7 +447,7 @@ SDP.prototype.RtcpFbFromJingle = function (elem, payloadtype) { // XEP-0293
SDP.prototype.fromJingle = function (jingle) { SDP.prototype.fromJingle = function (jingle) {
var self = this; var self = this;
this.raw = 'v=0\r\n' + this.raw = 'v=0\r\n' +
'o=- ' + '1923518516' + ' 2 IN IP4 0.0.0.0\r\n' +// FIXME 'o=- 1923518516 2 IN IP4 0.0.0.0\r\n' +// FIXME
's=-\r\n' + 's=-\r\n' +
't=0 0\r\n'; 't=0 0\r\n';
// http://tools.ietf.org/html/draft-ietf-mmusic-sdp-bundle-negotiation-04#section-8 // http://tools.ietf.org/html/draft-ietf-mmusic-sdp-bundle-negotiation-04#section-8
@ -490,14 +503,11 @@ SDP.prototype.jingle2media = function (content) {
} else { } else {
tmp.proto = 'RTP/AVPF'; tmp.proto = 'RTP/AVPF';
} }
if (!sctp.length) if (!sctp.length) {
{
tmp.fmt = desc.find('payload-type').map( tmp.fmt = desc.find('payload-type').map(
function () { return this.getAttribute('id'); }).get(); function () { return this.getAttribute('id'); }).get();
media += SDPUtil.build_mline(tmp) + '\r\n'; media += SDPUtil.build_mline(tmp) + '\r\n';
} } else {
else
{
media += 'm=application 1 DTLS/SCTP ' + sctp.attr('number') + '\r\n'; media += 'm=application 1 DTLS/SCTP ' + sctp.attr('number') + '\r\n';
media += 'a=sctpmap:' + sctp.attr('number') + media += 'a=sctpmap:' + sctp.attr('number') +
' ' + sctp.attr('protocol'); ' ' + sctp.attr('protocol');
@ -568,15 +578,19 @@ SDP.prototype.jingle2media = function (content) {
media += SDPUtil.build_rtpmap(this) + '\r\n'; media += SDPUtil.build_rtpmap(this) + '\r\n';
if ($(this).find('>parameter').length) { if ($(this).find('>parameter').length) {
media += 'a=fmtp:' + this.getAttribute('id') + ' '; media += 'a=fmtp:' + this.getAttribute('id') + ' ';
media += $(this).find('parameter').map(function () { return (this.getAttribute('name') ? (this.getAttribute('name') + '=') : '') + this.getAttribute('value'); }).get().join('; '); media += $(this).find('parameter').map(function () {
return (this.getAttribute('name')
? (this.getAttribute('name') + '=') : '') +
this.getAttribute('value');
}).get().join('; ');
media += '\r\n'; media += '\r\n';
} }
// xep-0293 // xep-0293
media += self.RtcpFbFromJingle($(this), this.getAttribute('id')); media += self.rtcpFbFromJingle($(this), this.getAttribute('id'));
}); });
// xep-0293 // xep-0293
media += self.RtcpFbFromJingle(desc, '*'); media += self.rtcpFbFromJingle(desc, '*');
// xep-0294 // xep-0294
tmp = desc.find('>rtp-hdrext[xmlns="urn:xmpp:jingle:apps:rtp:rtp-hdrext:0"]'); tmp = desc.find('>rtp-hdrext[xmlns="urn:xmpp:jingle:apps:rtp:rtp-hdrext:0"]');
@ -585,11 +599,19 @@ SDP.prototype.jingle2media = function (content) {
}); });
content.find('>transport[xmlns="urn:xmpp:jingle:transports:ice-udp:1"]>candidate').each(function () { content.find('>transport[xmlns="urn:xmpp:jingle:transports:ice-udp:1"]>candidate').each(function () {
var protocol = this.getAttribute('protocol');
protocol = (typeof protocol === 'string') ? protocol.toLowerCase(): '';
if ((self.removeTcpCandidates && protocol === 'tcp') ||
(self.removeUdpCandidates && protocol === 'udp')) {
return;
}
media += SDPUtil.candidateFromJingle(this); media += SDPUtil.candidateFromJingle(this);
}); });
// XEP-0339 handle ssrc-group attributes // XEP-0339 handle ssrc-group attributes
tmp = content.find('description>ssrc-group[xmlns="urn:xmpp:jingle:apps:rtp:ssma:0"]').each(function() { content.find('description>ssrc-group[xmlns="urn:xmpp:jingle:apps:rtp:ssma:0"]').each(function() {
var semantics = this.getAttribute('semantics'); var semantics = this.getAttribute('semantics');
var ssrcs = $(this).find('>source').map(function() { var ssrcs = $(this).find('>source').map(function() {
return this.getAttribute('ssrc'); return this.getAttribute('ssrc');