We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db27962 commit b6cbba4Copy full SHA for b6cbba4
js/webrtc.js
@@ -23,7 +23,17 @@ function tryIceLeak(RTCPeerConnectionClass) {
23
{ urls: ['stun:stun.l.google.com:19302'] },
24
// stun.l.google.com, but by IP, in case DNS doesn't work.
25
{ urls: ['stun:173.194.76.127:19302'] },
26
- { urls: ['stun:stun.voipgate.com:3478'] }
+ { urls: ['stun:stun.voipgate.com:3478'] },
27
+ // This will not generate candidates,
28
+ // because it's not a TURN server.
29
+ // But this helps see e.g. with Wireshark
30
+ // whether the browser will attempt to gather
31
+ // relay (TURN) candidates.
32
+ {
33
+ urls: ['turn:173.194.76.127:19302'],
34
+ username: 'foo',
35
+ credential: 'bar',
36
+ },
37
]
38
});
39
0 commit comments