From 57b6c743ef4c058aa6adb529a962867c1b463f9a Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Mon, 17 Jul 2023 10:17:48 +0530 Subject: [PATCH] webrtc/js: Remove obsolete mozilla stun server Mozilla's public stun server is gone. Remove it. Part-of: --- subprojects/gst-examples/webrtc/sendrecv/js/webrtc.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/subprojects/gst-examples/webrtc/sendrecv/js/webrtc.js b/subprojects/gst-examples/webrtc/sendrecv/js/webrtc.js index 46a7c5ea9c..10353e4c26 100644 --- a/subprojects/gst-examples/webrtc/sendrecv/js/webrtc.js +++ b/subprojects/gst-examples/webrtc/sendrecv/js/webrtc.js @@ -13,8 +13,7 @@ var ws_port; // Set this to use a specific peer id instead of a random one var default_peer_id; // Override with your own STUN servers if you want -var rtc_configuration = {iceServers: [{urls: "stun:stun.services.mozilla.com"}, - {urls: "stun:stun.l.google.com:19302"}]}; +var rtc_configuration = {iceServers: [{urls: "stun:stun.l.google.com:19302"}]}; // The default constraints that will be attempted. Can be overriden by the user. var default_constraints = {video: true, audio: true};