From 78b84d4ed88d3ac15df294556842f627a01a6904 Mon Sep 17 00:00:00 2001 From: audric Date: Wed, 9 Feb 2022 11:13:12 +1100 Subject: [PATCH] call: pick a sample of 2 of the iceservers before creating connection --- ts/session/utils/calling/CallManager.ts | 82 +++++++++++++------------ 1 file changed, 44 insertions(+), 38 deletions(-) diff --git a/ts/session/utils/calling/CallManager.ts b/ts/session/utils/calling/CallManager.ts index 378ea8c19..d583a43d4 100644 --- a/ts/session/utils/calling/CallManager.ts +++ b/ts/session/utils/calling/CallManager.ts @@ -120,46 +120,51 @@ let ignoreOffer = false; let isSettingRemoteAnswerPending = false; let lastOutgoingOfferTimestamp = -Infinity; +/** + * This array holds all of the ice servers Session can contact. + * They are all contacted at the same time, so before triggering the request, we get only a subset of those, randomly + */ +const iceServersFullArray = [ + { + urls: 'turn:freyr.getsession.org', + username: 'session202111', + credential: '053c268164bc7bd7', + }, + { + urls: 'turn:fenrir.getsession.org', + username: 'session202111', + credential: '053c268164bc7bd7', + }, + { + urls: 'turn:frigg.getsession.org', + username: 'session202111', + credential: '053c268164bc7bd7', + }, + { + urls: 'turn:angus.getsession.org', + username: 'session202111', + credential: '053c268164bc7bd7', + }, + { + urls: 'turn:hereford.getsession.org', + username: 'session202111', + credential: '053c268164bc7bd7', + }, + { + urls: 'turn:holstein.getsession.org', + username: 'session202111', + credential: '053c268164bc7bd7', + }, + { + urls: 'turn:brahman.getsession.org', + username: 'session202111', + credential: '053c268164bc7bd7', + }, +]; + const configuration: RTCConfiguration = { bundlePolicy: 'max-bundle', rtcpMuxPolicy: 'require', - iceServers: [ - { - urls: 'turn:freyr.getsession.org', - username: 'session202111', - credential: '053c268164bc7bd7', - }, - { - urls: 'turn:fenrir.getsession.org', - username: 'session202111', - credential: '053c268164bc7bd7', - }, - { - urls: 'turn:frigg.getsession.org', - username: 'session202111', - credential: '053c268164bc7bd7', - }, - { - urls: 'turn:angus.getsession.org', - username: 'session202111', - credential: '053c268164bc7bd7', - }, - { - urls: 'turn:hereford.getsession.org', - username: 'session202111', - credential: '053c268164bc7bd7', - }, - { - urls: 'turn:holstein.getsession.org', - username: 'session202111', - credential: '053c268164bc7bd7', - }, - { - urls: 'turn:brahman.getsession.org', - username: 'session202111', - credential: '053c268164bc7bd7', - }, - ], // iceTransportPolicy: 'relay', // for now, this cause the connection to break after 30-40 sec if we enable this }; @@ -701,7 +706,8 @@ function createOrGetPeerConnection(withPubkey: string) { return peerConnection; } remoteStream = new MediaStream(); - peerConnection = new RTCPeerConnection(configuration); + const sampleOfICeServers = _.sampleSize(iceServersFullArray, 2); + peerConnection = new RTCPeerConnection({ ...configuration, iceServers: sampleOfICeServers }); dataChannel = peerConnection.createDataChannel('session-datachannel', { ordered: true, negotiated: true,