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:
authorgrunjol <grunjol@argenteam.net>2016-03-09 20:01:31 +0300
committergrunjol <grunjol@argenteam.net>2016-03-09 20:06:30 +0300
commit001dc116d7695113d1219bcaf2ceba3d93de932d (patch)
treefb7cc77963cfbfa5cea0ba52bd983e18f272a9c8 /README.md
parent7094638b2ebb612b81919c33fb9619d7e1c453c5 (diff)
limit (top) number of concurrent web seed connections
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index bd3b8b0..b810e76 100644
--- a/README.md
+++ b/README.md
@@ -275,7 +275,8 @@ If `opts` is specified, then the default options (shown below) will be overridde
announce: [], // Torrent trackers to use (added to list in .torrent or magnet uri)
getAnnounceOpts: function, // Custom callback to allow sending extra parameters to the tracker
path: String, // Folder to download files to (default=`/tmp/webtorrent/`)
- store: Function // Custom chunk store (must follow [abstract-chunk-store](https://www.npmjs.com/package/abstract-chunk-store) API)
+ store: Function // Custom chunk store (must follow [abstract-chunk-store](https://www.npmjs.com/package/abstract-chunk-store) API),
+ maxWebConns: Number // Max number of simultaneous connections per web seed
}
```