Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2015-12-29 19:24:17 +0300
committerFeross Aboukhadijeh <feross@feross.org>2015-12-29 19:46:10 +0300
commit210741b62b2f9dbab5ce43c10f1473bd8c85b850 (patch)
tree23fcfa971550d8667fa19d77a5b77c57840ef11b /index.js
parent8518ea886ae0af22f89b62d000dfd9d43e3e9a20 (diff)
BREAKING: rename opts.maxPeers -> opts.maxConns
- The underlying option on the `bittorrent-swarm` instance is named `maxConns` which is a more accurate name - Let `bittorrent-swarm` handle non-number maxConns values
Diffstat (limited to 'index.js')
-rw-r--r--index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.js b/index.js
index 6e1bf4a..2281a91 100644
--- a/index.js
+++ b/index.js
@@ -42,7 +42,7 @@ var VERSION_PREFIX = '-WW' + VERSION_STR + '-'
/**
* WebTorrent Client
- * @param {Object} opts
+ * @param {Object=} opts
*/
function WebTorrent (opts) {
var self = this
@@ -64,7 +64,7 @@ function WebTorrent (opts) {
self.downloadSpeed = speedometer()
self.uploadSpeed = speedometer()
- self.maxPeers = (Number(opts.maxPeers) && opts.maxPeers !== 0) ? opts.maxPeers : undefined
+ self.maxConns = opts.maxConns
self.peerId = typeof opts.peerId === 'string'
? opts.peerId