sdp-jingle-json
Advanced tools
Comparing version 1.1.2 to 1.1.3
@@ -185,2 +185,4 @@ exports.lines = function (sdp) { | ||
candidate.generation = parts[i + 1]; | ||
} else if (parts[i] === 'tcptype') { | ||
candidate.tcpType = parts[i + 1]; | ||
} | ||
@@ -187,0 +189,0 @@ } |
@@ -193,2 +193,6 @@ var senders = { | ||
} | ||
if (candidate.tcpType) { | ||
sdp.push('tcptype'); | ||
sdp.push(candidate.tcpType); | ||
} | ||
@@ -195,0 +199,0 @@ sdp.push('generation'); |
{ | ||
"name": "sdp-jingle-json", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"description": "A parser/serializer for SDP to JSON. Useful for converting SDP to other formats like Jingle for WebRTC signalling", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
46941
999