02a6373c96
Theres still some work to do on that regarding ICE handling
12 lines
261 B
JavaScript
Executable File
12 lines
261 B
JavaScript
Executable File
/*
|
|
* Paulo Renato Lanzarin
|
|
* (C) Copyright 2017 Bigbluebutton
|
|
*
|
|
*/
|
|
|
|
const ConnectionManager = require('./lib/ConnectionManager');
|
|
const CM = new ConnectionManager();
|
|
|
|
process.on('SIGTERM', CM._stopAll.bind(CM));
|
|
process.on('SIGINT', CM._stopAll.bind(CM));
|