Skip to content

Commit

Permalink
Update STUN servers (#1381)
Browse files Browse the repository at this point in the history
Commented out sipgate.net STUN server.
Added Cloudflare STUN server.
  • Loading branch information
carlin978 authored Jul 23, 2024
1 parent 03735dc commit 7cc4cce
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/webrtc.js
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down Expand Up @@ -130,4 +131,4 @@
return peer;
}
});
}());
}());

0 comments on commit 7cc4cce

Please sign in to comment.