feat: set and hook up libp2p-connection-manager (#184)

This commit is contained in:
Pedro Teixeira 2018-06-20 11:19:37 +01:00 committed by David Dias
parent 28ffa0c7dc
commit d5972045da
2 changed files with 5 additions and 2 deletions

View File

@ -38,14 +38,15 @@
"homepage": "https://github.com/libp2p/js-libp2p", "homepage": "https://github.com/libp2p/js-libp2p",
"dependencies": { "dependencies": {
"async": "^2.6.0", "async": "^2.6.0",
"libp2p-connection-manager": "~0.0.2",
"libp2p-floodsub": "^0.15.0", "libp2p-floodsub": "^0.15.0",
"libp2p-ping": "~0.8.0", "libp2p-ping": "~0.8.0",
"libp2p-switch": "~0.40.4", "libp2p-switch": "~0.40.4",
"libp2p-websockets": "^0.12.0",
"mafmt": "^6.0.0", "mafmt": "^6.0.0",
"multiaddr": "^5.0.0", "multiaddr": "^5.0.0",
"peer-book": "~0.8.0", "peer-book": "~0.8.0",
"peer-id": "~0.10.7", "peer-id": "~0.10.7",
"libp2p-websockets": "^0.12.0",
"peer-info": "~0.14.1" "peer-info": "~0.14.1"
}, },
"devDependencies": { "devDependencies": {
@ -62,6 +63,7 @@
"libp2p-secio": "~0.10.0", "libp2p-secio": "~0.10.0",
"libp2p-spdy": "~0.12.1", "libp2p-spdy": "~0.12.1",
"libp2p-tcp": "~0.12.0", "libp2p-tcp": "~0.12.0",
"libp2p-webrtc-star": "~0.15.0",
"libp2p-websocket-star": "~0.8.0", "libp2p-websocket-star": "~0.8.0",
"libp2p-websocket-star-rendezvous": "~0.2.3", "libp2p-websocket-star-rendezvous": "~0.2.3",
"lodash.times": "^4.3.2", "lodash.times": "^4.3.2",
@ -69,7 +71,6 @@
"pull-serializer": "~0.3.2", "pull-serializer": "~0.3.2",
"pull-stream": "^3.6.8", "pull-stream": "^3.6.8",
"sinon": "^5.0.7", "sinon": "^5.0.7",
"libp2p-webrtc-star": "~0.15.0",
"wrtc": "0.1.1" "wrtc": "0.1.1"
}, },
"contributors": [ "contributors": [

View File

@ -11,6 +11,7 @@ const PeerBook = require('peer-book')
const Switch = require('libp2p-switch') const Switch = require('libp2p-switch')
const Ping = require('libp2p-ping') const Ping = require('libp2p-ping')
const WebSockets = require('libp2p-websockets') const WebSockets = require('libp2p-websockets')
const ConnectionManager = require('libp2p-connection-manager')
const peerRouting = require('./peer-routing') const peerRouting = require('./peer-routing')
const contentRouting = require('./content-routing') const contentRouting = require('./content-routing')
@ -37,6 +38,7 @@ class Node extends EventEmitter {
this.switch = new Switch(this.peerInfo, this.peerBook, _options.switch) this.switch = new Switch(this.peerInfo, this.peerBook, _options.switch)
this.stats = this.switch.stats this.stats = this.switch.stats
this.connectionManager = new ConnectionManager(this, _options.connectionManager)
// Attach stream multiplexers // Attach stream multiplexers
if (this.modules.connection && this.modules.connection.muxer) { if (this.modules.connection && this.modules.connection.muxer) {