mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-14 05:11:19 -04:00
14 lines
532 B
CoffeeScript
14 lines
532 B
CoffeeScript
###
|
|
WebrTC shims for multiple browsers.
|
|
###
|
|
|
|
if 'undefined' != typeof module && 'undefined' != typeof module.exports
|
|
console.log 'not in browser.'
|
|
else
|
|
window.PeerConnection = window.RTCPeerConnection ||
|
|
window.mozRTCPeerConnection ||
|
|
window.webkitRTCPeerConnection
|
|
window.RTCIceCandidate = window.RTCIceCandidate || window.mozRTCIceCandidate
|
|
window.RTCSessionDescription = window.RTCSessionDescription ||
|
|
window.mozRTCSessionDescription
|
|
|