Net::Frame::Dump::Writer(3pm) User Contributed Perl Documentation Net::Frame::Dump::Writer(3pm)

Net::Frame::Dump::Writer - tcpdump like implementation, writer mode

   use Net::Frame::Dump::Writer;
   my $oDump = Net::Frame::Dump::Writer->new(
      file       => 'new-file.pcap',
      firstLayer => 'ETH',
   );
   $oDump->start;
   $oDump->write({ timestamp => '10.10', raw => ('A' x 14) });
   $oDump->stop;

This module implements a pcap file builder. You will be able to create frames, then write them in the pcap file format to a file.

The following are inherited attributes:

Name of the .pcap file to generate.
Overwrites a .pcap file that already exists. Default to not.
Append new frames to an existing pcap file. Create it if does not exists yet.
Stores information about the first layer type. It is used to write .pcap file header information.
Returns true if a call to start has been done, false otherwise or if a call to stop has been done.

Object constructor. You can pass attributes that will overwrite default ones. See SYNOPSIS for default values.
When you want to start writing frames to the file, call this method.
When you want to stop writing frames to the file, call this method.
Takes a hashref as a parameter. This hashref MUST have timestamp and raw keys, with values. The raw data will be stored to the .pcap file.

Net::Frame::Dump

Patrice <GomoR> Auffret

Copyright (c) 2006-2020, Patrice <GomoR> Auffret

You may distribute this module under the terms of the Artistic license. See LICENSE.Artistic file in the source distribution archive.

2022-11-19 perl v5.36.0