|
|
@@ -295,8 +295,7 @@ class JingleConnectionPlugin extends ConnectionPlugin {
|
|
295
|
295
|
// uses time-limited credentials as described in
|
|
296
|
296
|
// http://tools.ietf.org/html/draft-uberti-behave-turn-rest-00
|
|
297
|
297
|
//
|
|
298
|
|
- // See https://code.google.com/p/prosody-modules/source/browse/
|
|
299
|
|
- // mod_turncredentials/mod_turncredentials.lua
|
|
|
298
|
+ // See https://modules.prosody.im/mod_turncredentials.html
|
|
300
|
299
|
// for a prosody module which implements this.
|
|
301
|
300
|
//
|
|
302
|
301
|
// Currently, this doesn't work with updateIce and therefore credentials
|
|
|
@@ -307,8 +306,7 @@ class JingleConnectionPlugin extends ConnectionPlugin {
|
|
307
|
306
|
this.connection.sendIQ(
|
|
308
|
307
|
$iq({ type: 'get',
|
|
309
|
308
|
to: this.connection.domain })
|
|
310
|
|
- .c('services', { xmlns: 'urn:xmpp:extdisco:1' })
|
|
311
|
|
- .c('service', { host: `turn.${this.connection.domain}` }),
|
|
|
309
|
+ .c('services', { xmlns: 'urn:xmpp:extdisco:1' }),
|
|
312
|
310
|
res => {
|
|
313
|
311
|
const iceservers = [];
|
|
314
|
312
|
|