bendwidth / frontend / src / videoComponents / webRTCUtilities / stunServers.js
stunServers.js
Raw
// STUN servers to get ICE candidates.
let peerConfiguration = {
    iceServers:[
        {
            urls:[
              'stun:stun.l.google.com:19302',
              'stun:stun1.l.google.com:19302'
            ]
        }
    ]
}

export default peerConfiguration