DEBUG
This commit is contained in:
parent
fc5862aa8a
commit
2083f5f8fa
|
@ -19,9 +19,9 @@ export default class ClientList {
|
||||||
const webrtc = new RTCPeerConnection({
|
const webrtc = new RTCPeerConnection({
|
||||||
iceServers: [{
|
iceServers: [{
|
||||||
urls: 'turn:satori.love:3478',
|
urls: 'turn:satori.love:3478',
|
||||||
username: '', // 'your-username',
|
username: 'your-username',
|
||||||
credential: '', // await crypto.subtle.digest('SHA-1', new TextEncoder().encode('your-password')),
|
credential: await crypto.subtle.digest('SHA-1', new TextEncoder().encode('your-password')),
|
||||||
credentialType: 'password'
|
//credentialType: 'password'
|
||||||
}]
|
}]
|
||||||
})
|
})
|
||||||
webrtc.onicecandidate = event => {
|
webrtc.onicecandidate = event => {
|
||||||
|
|
Loading…
Reference in New Issue