feat: Add and whitelist the useTurnUdp config option.
This commit is contained in:
parent
929622b27c
commit
0c09ded76b
|
@ -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,
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,7 @@ export default [
|
||||||
'useIPv6',
|
'useIPv6',
|
||||||
'useNicks',
|
'useNicks',
|
||||||
'useStunTurn',
|
'useStunTurn',
|
||||||
|
'useTurnUdp',
|
||||||
'webrtcIceTcpDisable',
|
'webrtcIceTcpDisable',
|
||||||
'webrtcIceUdpDisable'
|
'webrtcIceUdpDisable'
|
||||||
].concat(extraConfigWhitelist);
|
].concat(extraConfigWhitelist);
|
||||||
|
|
Loading…
Reference in New Issue