Skip to content

Commit

Permalink
using 60 as max connections - seems to perform better
Browse files Browse the repository at this point in the history
  • Loading branch information
mafintosh committed Mar 15, 2013
1 parent d688fbc commit dadc564
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var createServer = require('./server');

var argv = optimist
.usage('Usage: $0 torrent_file_or_url [options]')
.alias('c', 'connections').describe('c', 'max connected peers').default('c', 30)
.alias('c', 'connections').describe('c', 'max connected peers').default('c', 60)
.alias('p', 'port').describe('p', 'change the http port').default('p', 8888)
.alias('b', 'buffer').describe('b', 'change buffer file')
.alias('q', 'quiet').describe('q', 'be quiet')
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "peerflix",
"version": "0.0.5",
"version": "0.0.6",
"bin": {
"peerflix": "app.js"
},
Expand Down

0 comments on commit dadc564

Please sign in to comment.