mirror of
https://api.glitch.com/git/yaswvc
synced 2026-01-12 05:08:11 +00:00
🌝🏤 Checkpoint
./public/main.js:5975361/1673
This commit is contained in:
parent
e87ec769a1
commit
2eed250da1
1 changed files with 22 additions and 1 deletions
|
|
@ -5,7 +5,28 @@ var app = new Vue({
|
||||||
data: {
|
data: {
|
||||||
peer: new Peer(localStorage.getItem('yaswvc-peerId'), {
|
peer: new Peer(localStorage.getItem('yaswvc-peerId'), {
|
||||||
host: '/',
|
host: '/',
|
||||||
path: '/peerjs/myapp'
|
path: '/peerjs/myapp',
|
||||||
|
config: {
|
||||||
|
'iceServers': [
|
||||||
|
{ urls: 'stun:stun.l.google.com:19302' },
|
||||||
|
{ urls: 'stun:stun.stunprotocol.org:3478' },
|
||||||
|
{ urls: 'stun:stun.sipnet.net:3478' },
|
||||||
|
{ urls: 'stun:stun.ideasip.com:3478' },
|
||||||
|
{ urls: 'stun:stun.iptel.org:3478' },
|
||||||
|
{ urls: 'turn:numb.viagenie.ca', username: 'imvasanthv@gmail.com', credential: 'd0ntuseme' },
|
||||||
|
{
|
||||||
|
urls: [
|
||||||
|
'turn:173.194.72.127:19305?transport=udp',
|
||||||
|
'turn:[2404:6800:4008:C01::7F]:19305?transport=udp',
|
||||||
|
'turn:173.194.72.127:443?transport=tcp',
|
||||||
|
'turn:[2404:6800:4008:C01::7F]:443?transport=tcp'
|
||||||
|
],
|
||||||
|
username: 'CKjCuLwFEgahxNRjuTAYzc/s6OMT',
|
||||||
|
credential: 'u1SQDR/SQsPQIxXNWQT7czc/G4c='
|
||||||
|
}
|
||||||
|
],
|
||||||
|
'sdpSemantics': 'unified-plan',
|
||||||
|
}
|
||||||
}),
|
}),
|
||||||
stream: null,
|
stream: null,
|
||||||
calls: [],
|
calls: [],
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue