@webex/plugin-meetings 2.31.4 → 2.33.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,19 +0,0 @@
1
-
2
- const PeerConnectionUtils = {};
3
-
4
- /**
5
- * Convert C line to IPv4
6
- * @param {String} sdp
7
- * @returns {String}
8
- */
9
- PeerConnectionUtils.convertCLineToIpv4 = (sdp) => {
10
- let replaceSdp = sdp;
11
-
12
- // TODO: remove this once linus supports Ipv6 c line.currently linus rejects SDP with c line having ipv6 candidates we are
13
- // mocking ipv6 to ipv4 candidates
14
- // https://jira-eng-gpk2.cisco.com/jira/browse/SPARK-299232
15
- replaceSdp = replaceSdp.replace(/c=IN IP6 .*/gi, 'c=IN IP4 0.0.0.0');
16
-
17
- return replaceSdp;
18
- };
19
- export default PeerConnectionUtils;