@ -305,6 +305,11 @@ class JingletoSDP
}
if (isset($payload->attributes()->tcptype)) {
$sdp_media .=
' tcptype '.$payload->attributes()->tcptype;
if (isset($payload->attributes()->generation)) {
' generation '.$payload->attributes()->generation;
@ -404,6 +404,9 @@ class SDPtoJingle
if (isset($args['rport'])) {
$candidate->addAttribute('rel-port', $args['rport']);
if (isset($args['tcptype'])) {
$candidate->addAttribute('tcptype', $args['tcptype']);
// ufrag to the transport
$s = Session::start();