From cdc2c5dea9f573ae2d99d0645f65a87486952048 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Fri, 11 Jul 2014 03:51:01 -0700 Subject: [PATCH] default numwant to 50 since that's the server default --- client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.js b/client.js index ac10d3b..210011e 100644 --- a/client.js +++ b/client.js @@ -45,7 +45,7 @@ function Client (peerId, port, torrent, opts) { self.torrentLength = torrent.length // optional - self._numWant = self._opts.numWant || 80 + self._numWant = self._opts.numWant || 50 self._intervalMs = self._opts.interval || (30 * 60 * 1000) // default: 30 minutes debug('new tracker client for ' + self._infoHash.toString('hex'))