Fixes forcing tcp connections.

This commit is contained in:
damencho 2016-01-19 16:58:04 -06:00
parent dacd54b73c
commit 2af941d607
1 changed files with 4 additions and 4 deletions

View File

@ -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;
}