mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 920991 - Default stun server ip address should be changed to a domain name. r=abr
This commit is contained in:
parent
b3f95d641c
commit
4fffae2f1c
@ -331,7 +331,7 @@ RTCPeerConnection.prototype = {
|
||||
/**
|
||||
* An RTCConfiguration looks like this:
|
||||
*
|
||||
* { "iceServers": [ { url:"stun:23.21.150.121" },
|
||||
* { "iceServers": [ { url:"stun:stun.example.org" },
|
||||
* { url:"turn:turn.example.org",
|
||||
* username:"jib", credential:"mypass"} ] }
|
||||
*
|
||||
|
@ -556,7 +556,7 @@ PeerConnectionImpl::CreateRemoteSourceStreamInfo(nsRefPtr<RemoteSourceStreamInfo
|
||||
/**
|
||||
* In JS, an RTCConfiguration looks like this:
|
||||
*
|
||||
* { "iceServers": [ { url:"stun:23.21.150.121" },
|
||||
* { "iceServers": [ { url:"stun:stun.example.org" },
|
||||
* { url:"turn:turn.example.org?transport=udp",
|
||||
* username: "jib", credential:"mypass"} ] }
|
||||
*
|
||||
|
@ -234,7 +234,7 @@ pref("media.navigator.video.max_fs", 0); // unrestricted
|
||||
pref("media.navigator.video.max_fr", 0); // unrestricted
|
||||
pref("media.peerconnection.enabled", true);
|
||||
pref("media.navigator.permission.disabled", false);
|
||||
pref("media.peerconnection.default_iceservers", "[{\"url\": \"stun:23.21.150.121\"}]");
|
||||
pref("media.peerconnection.default_iceservers", "[{\"url\": \"stun:stun.services.mozilla.com\"}]");
|
||||
pref("media.peerconnection.trickle_ice", true);
|
||||
pref("media.peerconnection.use_document_iceservers", true);
|
||||
// These values (aec, agc, and noice) are from media/webrtc/trunk/webrtc/common_types.h
|
||||
|
Loading…
Reference in New Issue
Block a user