ipv4-peers
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/ipv4-peers package

2.0.0 • Public • Published

ipv4-peers

An abstract-encoding compliant encoder for encoding a list of ipv4 peers to buffers.

npm install ipv4-peers

build status

Usage

var peers = require('ipv4-peers')
 
var buf = peers.encode([{
  host: '127.0.0.1',
  port: 8080
}, {
  host: '127.0.0.1',
  port: 9090
}])
 
console.log(buf) // 12 byte buffer
console.log(peers.decode(buf)) // the peer list

API

var buf = peers.encode(peerList, [buffer], [offset])

Encode a list of ipv4 peers into a buffer.

var peers = peers.decode(buffer, [offset], [end])

Decode a buffer into a list of peers.

var length = peers.encodingLength(peerList)

Returns the amount of bytes needed to encode the peers into a buffer

peers = peers.idLength(idByteLength)

Create a new ipv4-peers decoder that encodes/decodes a fixed size peer id in addition to host/port. The peer id is exposed as the .id property on a peer object.

License

MIT

Dependents (7)

Package Sidebar

Install

npm i ipv4-peers

Weekly Downloads

184

Version

2.0.0

License

MIT

Unpacked Size

6.57 kB

Total Files

6

Last publish

Collaborators

  • mafintosh