0.3.2 • Published 11 years ago

ether-stream v0.3.2

Weekly downloads
3
License
-
Repository
github
Last release
11 years ago

ether-stream

Object stream transform that parses ethernet frame headers.

Build Status

Example

var EtherStream = require('ether-stream');
var pcap = require('pcap-parser');

var estream = new EtherStream();

var parser = pcap.parse(PCAP_FILE);
parser.on('packetData', function(payload) {
  var flushed = estream.write({data: payload});
  if (!flushed) {
    parser.stream.pause();
    estream.once('drained', parser.stream.resume.bind(parser.stream));
  }
});

estream.on('readable', function() {
  var msg = estream.read();
  msg.ether.src === '12:34:56:65:43:21';  // ether frame available as .ether
  msg.ether.dst === '98:76:54:32:10:01';
  msg.ether.type === 'ip';
  var iph = new IpHeader(msg.data);       // extract payload available at .data
});
estream.read(0);
0.3.2

11 years ago

0.3.1

11 years ago

0.3.0

11 years ago

0.2.1

11 years ago

0.2.0

11 years ago

0.1.3

11 years ago

0.1.2

11 years ago

0.1.1

11 years ago