Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 2x | export const iceConfig: RTCConfiguration = {
iceServers: [
{urls: 'stun:stun.ekiga.net'},
{urls: 'stun:stun.schlund.de'},
{urls: 'stun:stun.l.google.com:19302'},
{urls: 'stun:stun1.l.google.com:19302'},
{urls: 'stun:stun2.l.google.com:19302'},
{urls: 'stun:stun3.l.google.com:19302'},
{urls: 'stun:stun4.l.google.com:19302'},
{urls: 'stun:stun.voipbuster.com'},
{urls: 'stun:stun.voipstunt.com'},
{urls: 'stun:stun.xten.com'},
{
urls: 'turn:numb.viagenie.ca',
username: 'webrtc@live.com',
credential: 'muazkh',
},
{
urls: 'turn:giggleforest.com:5349?transport=tcp',
username: 'honlee',
credential: '1234',
},
],
iceTransportPolicy: 'all', //참조 : https://developer.mozilla.org/en-US/docs/Web/API/RTCConfiguration/iceTransportPolicy
};
|