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:
Diffstat (limited to 'index.js')
-rw-r--r--index.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/index.js b/index.js
index a3c5410..09b18b0 100644
--- a/index.js
+++ b/index.js
@@ -83,6 +83,10 @@ function WebTorrent (opts) {
if (opts.dht !== false && typeof DHT === 'function' /* browser exclude */) {
// use a single DHT instance for all torrents, so the routing table can be reused
self.dht = new DHT(extend({ nodeId: self.nodeId }, opts.dht))
+ self.dht.once('error', function (err) {
+ self.emit('error', err)
+ self.destroy()
+ })
self.dht.listen(opts.dhtPort)
} else {
self.dht = false