소스 검색

Nukes the pre-configured bridge from the example config file.

Jicofo is smart and can find any bridge with service discovery and/or
pubsub.
dev1
George Politis 9 년 전
부모
커밋
c3dafcf0f3
3개의 변경된 파일0개의 추가작업 그리고 10개의 파일을 삭제
  1. 0
    1
      doc/API.md
  2. 0
    1
      doc/example/example.js
  3. 0
    8
      modules/xmpp/moderator.js

+ 0
- 1
doc/API.md 파일 보기

175
         2. hosts - JS Object
175
         2. hosts - JS Object
176
             - domain
176
             - domain
177
             - muc
177
             - muc
178
-            - bridge
179
             - anonymousdomain
178
             - anonymousdomain
180
         3. useStunTurn -
179
         3. useStunTurn -
181
 
180
 

+ 0
- 1
doc/example/example.js 파일 보기

2
     hosts: {
2
     hosts: {
3
         domain: 'jitsi-meet.example.com',
3
         domain: 'jitsi-meet.example.com',
4
         muc: 'conference.jitsi-meet.example.com', // FIXME: use XEP-0030
4
         muc: 'conference.jitsi-meet.example.com', // FIXME: use XEP-0030
5
-        bridge: 'jitsi-videobridge.jitsi-meet.example.com', // FIXME: use XEP-0030
6
     },
5
     },
7
     bosh: '//jitsi-meet.example.com/http-bind', // FIXME: use xep-0156 for that
6
     bosh: '//jitsi-meet.example.com/http-bind', // FIXME: use xep-0156 for that
8
     clientNode: 'http://jitsi.org/jitsimeet', // The name of client node advertised in XEP-0115 'c' stanza
7
     clientNode: 'http://jitsi.org/jitsimeet', // The name of client node advertised in XEP-0115 'c' stanza

+ 0
- 8
modules/xmpp/moderator.js 파일 보기

124
     if (sessionId) {
124
     if (sessionId) {
125
         elem.attrs({ 'session-id': sessionId});
125
         elem.attrs({ 'session-id': sessionId});
126
     }
126
     }
127
-    if (this.options.connection.hosts !== undefined
128
-        && this.options.connection.hosts.bridge !== undefined) {
129
-        elem.c(
130
-            'property', {
131
-                name: 'bridge',
132
-                value: this.options.connection.hosts.bridge
133
-            }).up();
134
-    }
135
     if (this.options.connection.enforcedBridge !== undefined) {
127
     if (this.options.connection.enforcedBridge !== undefined) {
136
         elem.c(
128
         elem.c(
137
             'property', {
129
             'property', {

Loading…
취소
저장