|
|
|
@ -7492,10 +7492,10 @@ JingleSessionPC.prototype.accept = function () { |
|
|
|
|
pranswer.sdp = pranswer.sdp.replace('a=inactive', 'a=sendrecv'); |
|
|
|
|
} |
|
|
|
|
var prsdp = new SDP(pranswer.sdp); |
|
|
|
|
if (self.webrtcIceTcpDisable) { |
|
|
|
|
if (this.webrtcIceTcpDisable) { |
|
|
|
|
prsdp.removeTcpCandidates = true; |
|
|
|
|
} |
|
|
|
|
if (self.webrtcIceUdpDisable) { |
|
|
|
|
if (this.webrtcIceUdpDisable) { |
|
|
|
|
prsdp.removeUdpCandidates = true; |
|
|
|
|
} |
|
|
|
|
var accept = $iq({to: this.peerjid, |
|
|
|
@ -7817,10 +7817,10 @@ JingleSessionPC.prototype.getSsrcOwner = function (ssrc) { |
|
|
|
|
JingleSessionPC.prototype.setRemoteDescription = function (elem, desctype) { |
|
|
|
|
//logger.log('setting remote description... ', desctype);
|
|
|
|
|
this.remoteSDP = new SDP(''); |
|
|
|
|
if (self.webrtcIceTcpDisable) { |
|
|
|
|
if (this.webrtcIceTcpDisable) { |
|
|
|
|
this.remoteSDP.removeTcpCandidates = true; |
|
|
|
|
} |
|
|
|
|
if (self.webrtcIceUdpDisable) { |
|
|
|
|
if (this.webrtcIceUdpDisable) { |
|
|
|
|
this.remoteSDP.removeUdpCandidates = true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|