Supports tcptype in jingle to sdp conversion.
This commit is contained in:
parent
e380f88c77
commit
1148deef0d
|
@ -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…
Reference in New Issue