1.1.0 • Published 5 years ago

ip-packet v1.1.0

Weekly downloads
68
License
MIT
Repository
github
Last release
5 years ago

ip-packet

Encode/decode raw ip packets

npm install ip-packet

build status

Usage

var ip = require('ip-packet')

var buf = ip.encode({
  version: 4,
  protocol: 0,
  sourceIp: '127.0.0.1',
  destinationIp: '127.0.0.1',
  data: new Buffer('some data')
})

console.log(ip.decode(buf)) // prints out the decoded packet

API

buffer = ip.encode(packet, [buffer], [offset])

Encode a packet. A packet should look like this

{
  version: 4,
  dscp: 0,
  ecn: 0,
  identification: 0,
  flags: 0,
  fragmentOffset: 0,
  ttl: 0,
  protocol: 0,
  sourceIp: '127.0.0.1',
  destinationIp: '127.0.0.1',
  data: <Buffer>
}

`packet = ip.decode(buffer, offset)

Decode a packet. Throws an exception if the packet contains a bad checksum.

length = ip.encodingLength(packet)

Returns the byte length of the packet encoded

configure = ip.configure(options)

Returns ip-packet configured with options.

Options:

  • allowNullChecksum. When decoding, ignore checksums set to 0x0000

License

MIT

1.1.0

5 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago