@babblevoice/projectrtp 2.4.16 → 2.4.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/server.js
CHANGED
|
@@ -311,7 +311,7 @@ class channel {
|
|
|
311
311
|
close() {
|
|
312
312
|
|
|
313
313
|
/* any outstanding to remove where unmix was not called first? */
|
|
314
|
-
this._removebridge()
|
|
314
|
+
//this._removebridge()
|
|
315
315
|
|
|
316
316
|
/* close us */
|
|
317
317
|
this._write( {
|
|
@@ -333,7 +333,7 @@ class channel {
|
|
|
333
333
|
*/
|
|
334
334
|
async mix( other ) {
|
|
335
335
|
|
|
336
|
-
if( await this._addbridge( other ) ) return true
|
|
336
|
+
//if( await this._addbridge( other ) ) return true
|
|
337
337
|
|
|
338
338
|
this._write( {
|
|
339
339
|
"channel": "mix",
|
|
@@ -487,7 +487,7 @@ class channel {
|
|
|
487
487
|
@returns { boolean }
|
|
488
488
|
*/
|
|
489
489
|
unmix() {
|
|
490
|
-
this._removebridge()
|
|
490
|
+
//this._removebridge()
|
|
491
491
|
this._write( {
|
|
492
492
|
"channel": "unmix",
|
|
493
493
|
} )
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@ const mocknode = require( "../mock/mocknode" )
|
|
|
6
6
|
|
|
7
7
|
describe( "rtpproxy multi node", function() {
|
|
8
8
|
|
|
9
|
-
it( "2 node simple mix", async function() {
|
|
9
|
+
it.skip( "2 node simple mix", async function() {
|
|
10
10
|
|
|
11
11
|
const actual = { "mix": 0, "open": 0, "unmix": 0, "close": 0, "remote": 0 }
|
|
12
12
|
/*
|
|
@@ -173,7 +173,7 @@ describe( "rtpproxy multi node", function() {
|
|
|
173
173
|
|
|
174
174
|
} )
|
|
175
175
|
|
|
176
|
-
it( "2 node 2 channel simple mix rtp server listening on same node", async function() {
|
|
176
|
+
it.skip( "2 node 2 channel simple mix rtp server listening on same node", async function() {
|
|
177
177
|
|
|
178
178
|
/*
|
|
179
179
|
We need to check that the nodes are maintained when using the same rtp server.
|
|
@@ -316,7 +316,7 @@ describe( "rtpproxy multi node", function() {
|
|
|
316
316
|
|
|
317
317
|
} )
|
|
318
318
|
|
|
319
|
-
it( "2 node 2 channel connect to same rtp server not broken", async function() {
|
|
319
|
+
it.skip( "2 node 2 channel connect to same rtp server not broken", async function() {
|
|
320
320
|
|
|
321
321
|
/*
|
|
322
322
|
We need to check that the nodes are maintained when using the same rtp server.
|
|
@@ -403,7 +403,7 @@ describe( "rtpproxy multi node", function() {
|
|
|
403
403
|
prtp.proxy.clearnodes()
|
|
404
404
|
} )
|
|
405
405
|
|
|
406
|
-
it( "2 node 1 channel on one, 2 channels other", async function() {
|
|
406
|
+
it.skip( "2 node 1 channel on one, 2 channels other", async function() {
|
|
407
407
|
|
|
408
408
|
this.timeout( 3000 )
|
|
409
409
|
this.slow( 2500 )
|
|
@@ -587,7 +587,7 @@ describe( "rtpproxy multi node", function() {
|
|
|
587
587
|
|
|
588
588
|
} )
|
|
589
589
|
|
|
590
|
-
it( "3 node 1 channel each, close main node", async function() {
|
|
590
|
+
it.skip( "3 node 1 channel each, close main node", async function() {
|
|
591
591
|
|
|
592
592
|
this.timeout( 3000 )
|
|
593
593
|
this.slow( 2500 )
|