|
@@ -55,15 +55,13 @@ module.exports = function(XMPP, eventEmitter)
|
55
|
55
|
this.connection.disco.addFeature('urn:ietf:rfc:4588');
|
56
|
56
|
}
|
57
|
57
|
|
58
|
|
- // this is dealt with by SDP O/A so we don't need to annouce this
|
|
58
|
+ // this is dealt with by SDP O/A so we don't need to announce this
|
59
|
59
|
//this.connection.disco.addFeature('urn:xmpp:jingle:apps:rtp:rtcp-fb:0'); // XEP-0293
|
60
|
60
|
//this.connection.disco.addFeature('urn:xmpp:jingle:apps:rtp:rtp-hdrext:0'); // XEP-0294
|
61
|
|
- if (config.useRtcpMux) {
|
62
|
|
- this.connection.disco.addFeature('urn:ietf:rfc:5761'); // rtcp-mux
|
63
|
|
- }
|
64
|
|
- if (config.useBundle) {
|
65
|
|
- this.connection.disco.addFeature('urn:ietf:rfc:5888'); // a=group, e.g. bundle
|
66
|
|
- }
|
|
61
|
+
|
|
62
|
+ this.connection.disco.addFeature('urn:ietf:rfc:5761'); // rtcp-mux
|
|
63
|
+ this.connection.disco.addFeature('urn:ietf:rfc:5888'); // a=group, e.g. bundle
|
|
64
|
+
|
67
|
65
|
//this.connection.disco.addFeature('urn:ietf:rfc:5576'); // a=ssrc
|
68
|
66
|
}
|
69
|
67
|
this.connection.addHandler(this.onJingle.bind(this), 'urn:xmpp:jingle:1', 'iq', 'set', null, null);
|