Skip to content

Commit

Permalink
Use nICEr as the default ICE connection (#1455)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcague authored Sep 11, 2019
2 parents 1b0154c + 818f372 commit b789309
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion erizo_controller/erizoJS/erizoJS.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ global.config = config || {};
global.config.erizo = global.config.erizo || {};
global.config.erizo.numWorkers = global.config.erizo.numWorkers || 24;
global.config.erizo.numIOWorkers = global.config.erizo.numIOWorkers || 1;
global.config.erizo.useNicer = global.config.erizo.useNicer || false;
const useNicer = global.config.erizo.useNicer;
global.config.erizo.useNicer = (useNicer !== undefined) ? !!useNicer : true;
global.config.erizo.stunserver = global.config.erizo.stunserver || '';
global.config.erizo.stunport = global.config.erizo.stunport || 0;
global.config.erizo.minport = global.config.erizo.minport || 0;
Expand Down
2 changes: 1 addition & 1 deletion scripts/licode_default.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ config.erizo.minport = 0; // default value: 0
config.erizo.maxport = 0; // default value: 0

//Use of internal nICEr library instead of libNice.
config.erizo.useNicer = false; // default value: false
config.erizo.useNicer = true; // default value: true

config.erizo.disabledHandlers = []; // there are no handlers disabled by default

Expand Down

0 comments on commit b789309

Please sign in to comment.