mirror of
https://github.com/fluencelabs/js-libp2p-tcp
synced 2025-07-02 00:41:34 +00:00
Compare commits
20 Commits
Author | SHA1 | Date | |
---|---|---|---|
3781115f42 | |||
2070a5b0a0 | |||
c253a44f59 | |||
1e350a4dc7 | |||
69068f5da4 | |||
ce6edb05a2 | |||
73a79c9277 | |||
2e05826b30 | |||
e8a3c35cfb | |||
3c6bce9d28 | |||
d582fb5f61 | |||
b43f6ffb6f | |||
c456326515 | |||
6d1b729fcd | |||
fdfdb7a5ad | |||
3f87b5470c | |||
f4dafe55d1 | |||
541ec1fdda | |||
c3b5c132c0 | |||
4499bba514 |
91
README.md
91
README.md
@ -1,11 +1,96 @@
|
|||||||
js-libp2p-tcp
|
js-libp2p-tcp
|
||||||
===============
|
===============
|
||||||
|
|
||||||
[](http://ipn.io) [[](http://webchat.freenode.net/?channels=%23ipfs) ](https://travis-ci.org/diasdavid/js-libp2p-tcp)  [](https://david-dm.org/diasdavid/js-libp2p-tcp) [](https://github.com/feross/standard)
|
[](http://ipn.io)
|
||||||
|
[](http://webchat.freenode.net/?channels=%23ipfs)
|
||||||
|
[](https://travis-ci.org/diasdavid/js-libp2p-tcp)
|
||||||
|

|
||||||
|
[](https://david-dm.org/diasdavid/js-libp2p-tcp)
|
||||||
|
[](https://github.com/feross/standard)
|
||||||
|
|
||||||

|

|
||||||

|

|
||||||
|
|
||||||
> Node.js implementation of the TCP module that libp2p uses, which implements the [abstract-connection]() interface for dial/listen.
|
> Node.js implementation of the TCP module that libp2p uses, which implements
|
||||||
|
> the [interface-connection](https://github.com/diasdavid/interface-connection)
|
||||||
|
> interface for dial/listen.
|
||||||
|
|
||||||
note: libp2p-tcp in Node.js is a very thin shim that adds the support to dial to a `multiaddr`. This small shim will enable libp2p to use other different transports.
|
## Description
|
||||||
|
|
||||||
|
`libp2p-tcp` in Node.js is a very thin shim that adds support for dialing to a
|
||||||
|
`multiaddr`. This small shim will enable libp2p to use other different
|
||||||
|
transports.
|
||||||
|
|
||||||
|
## Example
|
||||||
|
|
||||||
|
```js
|
||||||
|
const Tcp = require('libp2p-tcp')
|
||||||
|
const multiaddr = require('multiaddr')
|
||||||
|
|
||||||
|
const mh1 = multiaddr('/ip4/127.0.0.1/tcp/9090')
|
||||||
|
const mh2 = multiaddr('/ip6/::/tcp/9092')
|
||||||
|
|
||||||
|
const tcp = new Tcp()
|
||||||
|
|
||||||
|
tcp.createListener([mh1, mh2], function handler (socket) {
|
||||||
|
console.log('connection')
|
||||||
|
socket.end('bye')
|
||||||
|
}, function ready () {
|
||||||
|
console.log('ready')
|
||||||
|
|
||||||
|
const client = tcp.dial(mh1)
|
||||||
|
client.pipe(process.stdout)
|
||||||
|
client.on('end', () => {
|
||||||
|
tcp.close()
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
outputs
|
||||||
|
|
||||||
|
```
|
||||||
|
ready
|
||||||
|
connection
|
||||||
|
bye
|
||||||
|
```
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
### npm
|
||||||
|
|
||||||
|
```sh
|
||||||
|
> npm i libp2p-tcp
|
||||||
|
```
|
||||||
|
|
||||||
|
## API
|
||||||
|
|
||||||
|
```js
|
||||||
|
const Tcp = require('libp2p-tcp')
|
||||||
|
```
|
||||||
|
|
||||||
|
### var tcp = new Tcp()
|
||||||
|
|
||||||
|
Creates a new TCP object. This does nothing on its own, but provides access to
|
||||||
|
`dial` and `createListener`.
|
||||||
|
|
||||||
|
### tcp.createListener(multiaddrs, handler, ready)
|
||||||
|
|
||||||
|
Creates TCP servers that listen on the addresses described in the array
|
||||||
|
`multiaddrs`. Each connection will call `handler` with a connection stream.
|
||||||
|
`ready` is called once all servers are listening.
|
||||||
|
|
||||||
|
### tcp.dial(multiaddr, options={})
|
||||||
|
|
||||||
|
Connects to the multiaddress `multiaddr` using TCP, returning the socket stream.
|
||||||
|
If `options.ready` is set to a function, it is called when a connection is
|
||||||
|
established.
|
||||||
|
|
||||||
|
### tcp.close(callback)
|
||||||
|
|
||||||
|
Closes all the listening TCP servers, calling `callback` once all of them have
|
||||||
|
been shut down.
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
MIT
|
||||||
|
8
circle.yml
Normal file
8
circle.yml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
dependencies:
|
||||||
|
pre:
|
||||||
|
# setup ipv6
|
||||||
|
- sudo sysctl -w net.ipv6.conf.lo.disable_ipv6=0 net.ipv6.conf.default.disable_ipv6=0 net.ipv6.conf.all.disable_ipv6=0
|
||||||
|
|
||||||
|
machine:
|
||||||
|
node:
|
||||||
|
version: stable
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "libp2p-tcp",
|
"name": "libp2p-tcp",
|
||||||
"version": "0.3.0",
|
"version": "0.5.0",
|
||||||
"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",
|
||||||
"main": "src/index.js",
|
"main": "src/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@ -40,6 +40,7 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ip-address": "^5.8.0",
|
"ip-address": "^5.8.0",
|
||||||
|
"mafmt": "^1.0.1",
|
||||||
"multiaddr": "^1.1.1"
|
"multiaddr": "^1.1.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
22
src/index.js
22
src/index.js
@ -3,6 +3,7 @@
|
|||||||
const tcp = require('net')
|
const tcp = require('net')
|
||||||
const multiaddr = require('multiaddr')
|
const multiaddr = require('multiaddr')
|
||||||
const Address6 = require('ip-address').Address6
|
const Address6 = require('ip-address').Address6
|
||||||
|
const mafmt = require('mafmt')
|
||||||
|
|
||||||
exports = module.exports = TCP
|
exports = module.exports = TCP
|
||||||
|
|
||||||
@ -25,13 +26,7 @@ function TCP () {
|
|||||||
return conn
|
return conn
|
||||||
}
|
}
|
||||||
|
|
||||||
this.createListener = (multiaddrs, options, handler, callback) => {
|
this.createListener = (multiaddrs, handler, callback) => {
|
||||||
if (typeof options === 'function') {
|
|
||||||
callback = handler
|
|
||||||
handler = options
|
|
||||||
options = {}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!Array.isArray(multiaddrs)) {
|
if (!Array.isArray(multiaddrs)) {
|
||||||
multiaddrs = [multiaddrs]
|
multiaddrs = [multiaddrs]
|
||||||
}
|
}
|
||||||
@ -68,17 +63,26 @@ function TCP () {
|
|||||||
|
|
||||||
this.close = (callback) => {
|
this.close = (callback) => {
|
||||||
if (listeners.length === 0) {
|
if (listeners.length === 0) {
|
||||||
throw new Error('there are no listeners')
|
callback(new Error('there are no listeners'))
|
||||||
}
|
}
|
||||||
var count = 0
|
var count = 0
|
||||||
listeners.forEach((listener) => {
|
listeners.forEach((listener) => {
|
||||||
listener.close(() => {
|
listener.close(() => {
|
||||||
if (++count === listeners.length) {
|
if (++count === listeners.length && callback) {
|
||||||
callback()
|
callback()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.filter = (multiaddrs) => {
|
||||||
|
if (!Array.isArray(multiaddrs)) {
|
||||||
|
multiaddrs = [multiaddrs]
|
||||||
|
}
|
||||||
|
return multiaddrs.filter((ma) => {
|
||||||
|
return mafmt.TCP.matches(ma)
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function getMultiaddr (conn) {
|
function getMultiaddr (conn) {
|
||||||
|
@ -15,6 +15,19 @@ describe('libp2p-tcp', function () {
|
|||||||
done()
|
done()
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('create without new', (done) => {
|
||||||
|
tcp = TCPlibp2p()
|
||||||
|
expect(tcp).to.exist
|
||||||
|
done()
|
||||||
|
})
|
||||||
|
|
||||||
|
it('close /wo listeners', (done) => {
|
||||||
|
tcp = new TCPlibp2p()
|
||||||
|
expect(tcp).to.exist
|
||||||
|
expect(function () { tcp.close() }).to.throw(Error)
|
||||||
|
done()
|
||||||
|
})
|
||||||
|
|
||||||
it('listen', (done) => {
|
it('listen', (done) => {
|
||||||
const mh = multiaddr('/ip4/127.0.0.1/tcp/9090')
|
const mh = multiaddr('/ip4/127.0.0.1/tcp/9090')
|
||||||
tcp.createListener(mh, (socket) => {
|
tcp.createListener(mh, (socket) => {
|
||||||
@ -46,13 +59,32 @@ describe('libp2p-tcp', function () {
|
|||||||
it('listen on several', (done) => {
|
it('listen on several', (done) => {
|
||||||
const mh1 = multiaddr('/ip4/127.0.0.1/tcp/9090')
|
const mh1 = multiaddr('/ip4/127.0.0.1/tcp/9090')
|
||||||
const mh2 = multiaddr('/ip4/127.0.0.1/tcp/9091')
|
const mh2 = multiaddr('/ip4/127.0.0.1/tcp/9091')
|
||||||
|
const mh3 = multiaddr('/ip6/::/tcp/9092')
|
||||||
const tcp = new TCPlibp2p()
|
const tcp = new TCPlibp2p()
|
||||||
|
|
||||||
tcp.createListener([mh1, mh2], (socket) => {}, () => {
|
tcp.createListener([mh1, mh2, mh3], (socket) => {}, () => {
|
||||||
tcp.close(done)
|
tcp.close(done)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('dial ipv6', (done) => {
|
||||||
|
const mh = multiaddr('/ip6/::/tcp/9091')
|
||||||
|
var dialerObsAddrs
|
||||||
|
|
||||||
|
tcp.createListener(mh, (conn) => {
|
||||||
|
expect(conn).to.exist
|
||||||
|
dialerObsAddrs = conn.getObservedAddrs()
|
||||||
|
conn.end()
|
||||||
|
}, () => {
|
||||||
|
const conn = tcp.dial(mh)
|
||||||
|
conn.on('end', () => {
|
||||||
|
expect(dialerObsAddrs.length).to.equal(1)
|
||||||
|
tcp.close()
|
||||||
|
done()
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
it('get observed addrs', (done) => {
|
it('get observed addrs', (done) => {
|
||||||
const mh = multiaddr('/ip4/127.0.0.1/tcp/9090')
|
const mh = multiaddr('/ip4/127.0.0.1/tcp/9090')
|
||||||
var dialerObsAddrs
|
var dialerObsAddrs
|
||||||
@ -77,5 +109,23 @@ describe('libp2p-tcp', function () {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
it.skip('listen on IPv6', (done) => {})
|
it('filter valid addrs for this transport', (done) => {
|
||||||
|
const mh1 = multiaddr('/ip4/127.0.0.1/tcp/9090')
|
||||||
|
const mh2 = multiaddr('/ip4/127.0.0.1/udp/9090')
|
||||||
|
const mh3 = multiaddr('/ip4/127.0.0.1/tcp/9090/http')
|
||||||
|
|
||||||
|
const valid = tcp.filter([mh1, mh2, mh3])
|
||||||
|
expect(valid.length).to.equal(1)
|
||||||
|
expect(valid[0]).to.deep.equal(mh1)
|
||||||
|
done()
|
||||||
|
})
|
||||||
|
|
||||||
|
it('filter a valid addr for this transport', (done) => {
|
||||||
|
const mh1 = multiaddr('/ip4/127.0.0.1/tcp/9090')
|
||||||
|
|
||||||
|
const valid = tcp.filter(mh1)
|
||||||
|
expect(valid.length).to.equal(1)
|
||||||
|
expect(valid[0]).to.deep.equal(mh1)
|
||||||
|
done()
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
Reference in New Issue
Block a user