feat: Add and whitelist the useTurnUdp config option.

This commit is contained in:
Boris Grozev 2020-06-16 12:29:11 -05:00 committed by bgrozev
parent 929622b27c
commit 0c09ded76b
2 changed files with 8 additions and 1 deletions

View File

@ -260,9 +260,15 @@ var config = {
// is set in Jicofo and set to 2). // is set in Jicofo and set to 2).
// minParticipants: 2, // minParticipants: 2,
// Use XEP-0215 to fetch STUN and TURN servers. // Use the TURN servers discovered via XEP-0215 for the jitsi-videobridge
// connection
// useStunTurn: true, // useStunTurn: true,
// Use TURN/UDP servers for the jitsi-videobridge connection (by default
// we filter out TURN/UDP because it is usually not needed since the
// bridge itself is reachable via UDP)
// useTurnUdp: false
// Enable IPv6 support. // Enable IPv6 support.
// useIPv6: true, // useIPv6: true,

View File

@ -150,6 +150,7 @@ export default [
'useIPv6', 'useIPv6',
'useNicks', 'useNicks',
'useStunTurn', 'useStunTurn',
'useTurnUdp',
'webrtcIceTcpDisable', 'webrtcIceTcpDisable',
'webrtcIceUdpDisable' 'webrtcIceUdpDisable'
].concat(extraConfigWhitelist); ].concat(extraConfigWhitelist);