Browse Source

Merge pull request #1 from ferrybig/patch-1

Make package IPv6 ready
pull/8/head
o1lab 7 years ago committed by GitHub
parent
commit
cb4aa62930
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lib/util/cmd.helper.js

2
lib/util/cmd.helper.js

@ -53,7 +53,7 @@ exports.handle = program => {
program.connectionLimit = 10;
if (program.host === 'localhost' || program.host === '127.0.0.1') {
if (program.host === 'localhost' || program.host === '127.0.0.1' || program.host === '::1') {
program.dynamic = 1
}
//console.log(program.rawArgs);

Loading…
Cancel
Save