Converts ssltcp candidate to tcp one on FF.

This commit is contained in:
damencho 2015-12-02 16:52:32 -06:00
parent 3ca288d74d
commit 1c19f977ad
2 changed files with 11 additions and 5 deletions

View File

@ -311,7 +311,13 @@ var SDPUtil = {
line += ' ';
line += cand.getAttribute('component');
line += ' ';
line += cand.getAttribute('protocol'); //.toUpperCase(); // chrome M23 doesn't like this
var protocol = cand.getAttribute('protocol');
// use tcp candidates for FF
if (RTCBrowserType.isFirefox() && protocol.toLowerCase() == 'ssltcp') {
protocol = 'tcp';
}
line += ' ';
line += cand.getAttribute('priority');
line += ' ';
@ -338,7 +344,7 @@ var SDPUtil = {
}
break;
}
if (cand.getAttribute('protocol').toLowerCase() == 'tcp') {
if (protocol.toLowerCase() == 'tcp') {
line += 'tcptype';
line += ' ';
line += cand.getAttribute('tcptype');

View File

@ -27,9 +27,9 @@
"jssha": "1.5.0",
"pako": "*",
"retry": "0.6.1",
"sdp-interop": "0.1.10",
"sdp-simulcast": "0.1.2",
"sdp-transform": "1.4.1",
"sdp-interop": "0.1.11",
"sdp-simulcast": "0.1.3",
"sdp-transform": "1.5.*",
"socket.io-client": "1.3.6",
"strophe": "^1.2.2",
"strophejs-plugins": "^0.0.6",