Update STUN servers (#1381)

Commented out sipgate.net STUN server.
Added Cloudflare STUN server.
This commit is contained in:
carlin978 2024-07-23 13:56:40 +01:00 committed by GitHub
parent 03735dc09c
commit 7cc4cce1a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,7 +21,8 @@
opt.RTCIceCandidate = rtcic;
opt.rtc = opt.rtc || {'iceServers': [
{urls: 'stun:stun.l.google.com:19302'},
{urls: "stun:stun.sipgate.net:3478"}/*,
{urls: 'stun:stun.cloudflare.com:3478'}/*,
{urls: "stun:stun.sipgate.net:3478"},
{urls: "stun:stun.stunprotocol.org"},
{urls: "stun:stun.sipgate.net:10000"},
{urls: "stun:217.10.68.152:10000"},
@ -130,4 +131,4 @@
return peer;
}
});
}());
}());