Compare commits

..

1 Commits

Author SHA1 Message Date
3f61784be9 docs(api): first pass 2018-07-31 15:53:27 +02:00
7 changed files with 93 additions and 38 deletions

View File

@ -27,3 +27,4 @@ build/Release
node_modules node_modules
test test
docs

View File

@ -1,13 +1,3 @@
<a name="0.13.0"></a>
# [0.13.0](https://github.com/libp2p/js-libp2p-tcp/compare/v0.12.1...v0.13.0) (2018-09-12)
### Features
* add support for dialing over dns ([eba0b48](https://github.com/libp2p/js-libp2p-tcp/commit/eba0b48))
<a name="0.12.1"></a> <a name="0.12.1"></a>
## [0.12.1](https://github.com/libp2p/js-libp2p-tcp/compare/v0.12.0...v0.12.1) (2018-07-31) ## [0.12.1](https://github.com/libp2p/js-libp2p-tcp/compare/v0.12.0...v0.12.1) (2018-07-31)

View File

@ -1,6 +1,6 @@
{ {
"name": "libp2p-tcp", "name": "libp2p-tcp",
"version": "0.13.0", "version": "0.12.1",
"description": "Node.js implementation of the TCP module that libp2p uses, which implements the interface-connection and interface-transport interfaces", "description": "Node.js implementation of the TCP module that libp2p uses, which implements the interface-connection and interface-transport interfaces",
"leadMaintainer": "Jacob Heun <jacobheun@gmail.com>", "leadMaintainer": "Jacob Heun <jacobheun@gmail.com>",
"main": "src/index.js", "main": "src/index.js",
@ -34,22 +34,22 @@
"npm": ">=3.0.0" "npm": ">=3.0.0"
}, },
"devDependencies": { "devDependencies": {
"aegir": "^17.1.1", "aegir": "^15.1.0",
"chai": "^4.2.0", "chai": "^4.1.2",
"dirty-chai": "^2.0.1", "dirty-chai": "^2.0.1",
"interface-transport": "~0.3.6", "interface-transport": "~0.3.6",
"lodash.isfunction": "^3.0.9", "lodash.isfunction": "^3.0.9",
"pull-stream": "^3.6.9" "pull-stream": "^3.6.7"
}, },
"dependencies": { "dependencies": {
"class-is": "^1.1.0", "class-is": "^1.1.0",
"debug": "^4.1.0", "debug": "^3.1.0",
"interface-connection": "~0.3.2", "interface-connection": "~0.3.2",
"ip-address": "^5.8.9", "ip-address": "^5.8.9",
"lodash.includes": "^4.3.0", "lodash.includes": "^4.3.0",
"lodash.isfunction": "^3.0.9", "lodash.isfunction": "^3.0.9",
"mafmt": "^6.0.3", "mafmt": "^6.0.0",
"multiaddr": "^6.0.1", "multiaddr": "^4.0.0",
"once": "^1.4.0", "once": "^1.4.0",
"stream-to-pull-stream": "^1.7.2" "stream-to-pull-stream": "^1.7.2"
}, },

View File

@ -15,7 +15,18 @@ const createListener = require('./listener')
function noop () {} function noop () {}
/**
*
*/
class TCP { class TCP {
/**
* Dial to another peer.
*
* @param {Multiaddr} ma - The address of the peer we want to dial to.
* @param {Object} [options={}]
* @param {function(Error?, Array<Multiaddr>?)} [callback]
* @returns {Connection}
*/
dial (ma, options, callback) { dial (ma, options, callback) {
if (isFunction(options)) { if (isFunction(options)) {
callback = options callback = options
@ -52,6 +63,13 @@ class TCP {
return conn return conn
} }
/**
* Listen for incoming `TCP` connetions.
*
* @param {Object} [options={}]
* @param {function(Connection)} [handler] - Called with newly incomin connections.
* @returns {Listener}
*/
createListener (options, handler) { createListener (options, handler) {
if (isFunction(options)) { if (isFunction(options)) {
handler = options handler = options
@ -63,6 +81,13 @@ class TCP {
return createListener(handler) return createListener(handler)
} }
/**
* Filter a list of multiaddrs for those which contain
* valid `TCP` addresses.
*
* @param {Multiaddr|Array<Multiaddr>} multiaddrs
* @returns {Array<Multiaddr>}
*/
filter (multiaddrs) { filter (multiaddrs) {
if (!Array.isArray(multiaddrs)) { if (!Array.isArray(multiaddrs)) {
multiaddrs = [multiaddrs] multiaddrs = [multiaddrs]
@ -73,8 +98,8 @@ class TCP {
return false return false
} }
if (ma.protoNames().includes('p2p')) { if (includes(ma.protoNames(), 'ipfs')) {
ma = ma.decapsulate('p2p') ma = ma.decapsulate('ipfs')
} }
return mafmt.TCP.matches(ma) return mafmt.TCP.matches(ma)

View File

@ -12,12 +12,54 @@ const log = debug('libp2p:tcp:listen')
const getMultiaddr = require('./get-multiaddr') const getMultiaddr = require('./get-multiaddr')
const P2P_CODE = 421 const IPFS_CODE = 421
const CLOSE_TIMEOUT = 2000 const CLOSE_TIMEOUT = 2000
function noop () {} function noop () {}
/**
* Listening for incoming connections.
*
* @event listening
* @instance
* @memberof Listener
*/
/**
* The server closes.
*
* @event close
* @instance
* @memberof Listener
*/
/**
* New connection established.
*
* @event connection
* @instance
* @type {Connection}
* @memberof Listener
*/
/**
* The underlying server encountered an error.
*
* @event error
* @instance
* @type {Error}
* @memberof Listener
*/
module.exports = (handler) => { module.exports = (handler) => {
/**
* @alias Listener
* @type {Eventemitter}
* @fires Listener#listening
* @fires Listener#close
* @fires Listener#connection
* @fires Listener#error
*/
const listener = new EventEmitter() const listener = new EventEmitter()
const server = net.createServer((socket) => { const server = net.createServer((socket) => {
@ -79,14 +121,14 @@ module.exports = (handler) => {
}) })
} }
let p2pId let ipfsId
let listeningAddr let listeningAddr
listener.listen = (ma, callback) => { listener.listen = (ma, callback) => {
listeningAddr = ma listeningAddr = ma
if (includes(ma.protoNames(), 'p2p')) { if (includes(ma.protoNames(), 'ipfs')) {
p2pId = getp2pId(ma) ipfsId = getIpfsId(ma)
listeningAddr = ma.decapsulate('p2p') listeningAddr = ma.decapsulate('ipfs')
} }
const lOpts = listeningAddr.toOptions() const lOpts = listeningAddr.toOptions()
@ -107,8 +149,8 @@ module.exports = (handler) => {
if (listeningAddr.toString().indexOf('ip4') !== -1) { if (listeningAddr.toString().indexOf('ip4') !== -1) {
let m = listeningAddr.decapsulate('tcp') let m = listeningAddr.decapsulate('tcp')
m = m.encapsulate('/tcp/' + address.port) m = m.encapsulate('/tcp/' + address.port)
if (p2pId) { if (ipfsId) {
m = m.encapsulate('/p2p/' + p2pId) m = m.encapsulate('/ipfs/' + ipfsId)
} }
if (m.toString().indexOf('0.0.0.0') !== -1) { if (m.toString().indexOf('0.0.0.0') !== -1) {
@ -127,8 +169,8 @@ module.exports = (handler) => {
if (address.family === 'IPv6') { if (address.family === 'IPv6') {
let ma = multiaddr('/ip6/' + address.address + '/tcp/' + address.port) let ma = multiaddr('/ip6/' + address.address + '/tcp/' + address.port)
if (p2pId) { if (ipfsId) {
ma = ma.encapsulate('/p2p/' + p2pId) ma = ma.encapsulate('/ipfs/' + ipfsId)
} }
multiaddrs.push(ma) multiaddrs.push(ma)
@ -140,9 +182,9 @@ module.exports = (handler) => {
return listener return listener
} }
function getp2pId (ma) { function getIpfsId (ma) {
return ma.stringTuples().filter((tuple) => { return ma.stringTuples().filter((tuple) => {
return tuple[0] === P2P_CODE return tuple[0] === IPFS_CODE
})[0][1] })[0][1]
} }

View File

@ -8,12 +8,11 @@ const TCP = require('../src')
describe('interface-transport compliance', () => { describe('interface-transport compliance', () => {
tests({ tests({
setup (cb) { setup (cb) {
const tcp = new TCP() let tcp = new TCP()
const addrs = [ const addrs = [
multiaddr('/ip4/127.0.0.1/tcp/9091'), multiaddr('/ip4/127.0.0.1/tcp/9091'),
multiaddr('/ip4/127.0.0.1/tcp/9092'), multiaddr('/ip4/127.0.0.1/tcp/9092'),
multiaddr('/ip4/127.0.0.1/tcp/9093'), multiaddr('/ip4/127.0.0.1/tcp/9093')
multiaddr('/dns4/ipfs.io')
] ]
cb(null, tcp, addrs) cb(null, tcp, addrs)
}, },

View File

@ -25,11 +25,9 @@ describe('filter addrs', () => {
const ma4 = multiaddr(base + '/tcp/9090/ipfs/Qmb6owHp6eaWArVbcJJbQSyifyJBttMMjYV76N2hMbf5Vw') const ma4 = multiaddr(base + '/tcp/9090/ipfs/Qmb6owHp6eaWArVbcJJbQSyifyJBttMMjYV76N2hMbf5Vw')
const ma5 = multiaddr(base + '/tcp/9090/http' + ipfs) const ma5 = multiaddr(base + '/tcp/9090/http' + ipfs)
const ma6 = multiaddr('/ip4/127.0.0.1/tcp/9090/p2p-circuit' + ipfs) const ma6 = multiaddr('/ip4/127.0.0.1/tcp/9090/p2p-circuit' + ipfs)
const ma7 = multiaddr('/dns4/libp2p.io/tcp/9090')
const ma8 = multiaddr('/dnsaddr/libp2p.io/tcp/9090')
const valid = tcp.filter([ma1, ma2, ma3, ma4, ma5, ma6, ma7, ma8]) const valid = tcp.filter([ma1, ma2, ma3, ma4, ma5, ma6])
expect(valid.length).to.equal(4) expect(valid.length).to.equal(2)
expect(valid[0]).to.deep.equal(ma1) expect(valid[0]).to.deep.equal(ma1)
expect(valid[1]).to.deep.equal(ma4) expect(valid[1]).to.deep.equal(ma4)
}) })