Supports tcptype in jingle to sdp conversion.

pull/169/merge
Boris Grozev 11 years ago
parent e380f88c77
commit 1148deef0d
  1. 6
      libs/strophe/strophe.jingle.sdp.util.js

@ -391,6 +391,12 @@ SDPUtil = {
}
break;
}
if (cand.getAttribute('protocol').toLowerCase() == 'tcp') {
line += 'tcptype';
line += ' ';
line += cand.getAttribute('tcptype');
line += ' ';
}
line += 'generation';
line += ' ';
line += cand.getAttribute('generation') || '0';

Loading…
Cancel
Save