logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Net::Frame::Layer::ARP - Address Resolution Protocol layer object

Attributes

hTypepType
           Hardware and protocol address types.

       hSizepSize
           Hardware and protocol address sizes in bytes.

       opCode
           The operation code number to perform.

       srcdst Source and destination hardware addresses.

       srcIpdstIp
           Source and destination IP addresses.

       The following are inherited attributes. See Net::Frame::Layer for more information.

       rawpayloadnextLayer

Author

       Patrice <GomoR> Auffret

Constants

       Load them: use Net::Frame::Layer::ARP qw(:consts);

       NF_ARP_HTYPE_ETH
           Hardware address types.

       NF_ARP_PTYPE_IPv4NF_ARP_PTYPE_IPv6
           Protocol address types.

       NF_ARP_HSIZE_ETH
           Hardware address sizes.

       NF_ARP_PSIZE_IPv4NF_ARP_PSIZE_IPv6
           Protocol address sizes.

       NF_ARP_OPCODE_REQUESTNF_ARP_OPCODE_REPLY
           Operation code numbers.

       NF_ARP_ADDR_BROADCAST
           Broadcast address for src or dst attributes.

Description

       This modules implements the encoding and decoding of the ARP layer.

       RFC: ftp://ftp.rfc-editor.org/in-notes/rfc826.txt

       See also Net::Frame::Layer for other attributes and methods.

Methods

newnew (hash)
           Object  constructor.  You  can  pass  attributes  that  will overwrite default ones. See SYNOPSIS for
           default values.

       getKeygetKeyReverse
           These  two  methods  are  basically  used  to  increase  the  speed  when  using  recv  method   from
           Net::Frame::Simple. Usually, you write them when you need to write match method.

       match (Net::Frame::Layer::ARP object)
           This method is mostly used internally. You pass a Net::Frame::Layer::ARP layer as a parameter, and it
           returns true if this is a response corresponding for the request, or returns false if not.

       The  following  are  inherited methods. Some of them may be overridden in this layer, and some others may
       not be meaningful in this layer. See Net::Frame::Layer for more information.

       layercomputeLengthscomputeChecksumspackunpackencapsulategetLengthgetPayloadLengthprintdump

Name

       Net::Frame::Layer::ARP - Address Resolution Protocol layer object

See Also

       Net::Frame::Layer

Synopsis

          use Net::Frame::Layer::ARP qw(:consts);

          # Build a layer
          my $layer = Net::Frame::Layer::ARP->new(
             hType   => NF_ARP_HTYPE_ETH,
             pType   => NF_ARP_PTYPE_IPv4,
             hSize   => NF_ARP_HSIZE_ETH,
             pSize   => NF_ARP_PSIZE_IPv4,
             opCode  => NF_ARP_OPCODE_REQUEST,
             src     => '00:00:00:00:00:00',
             dst     => NF_ARP_ADDR_BROADCAST,
             srcIp   => '127.0.0.1',
             dstIp   => '127.0.0.1',
          );
          $layer->pack;

          print 'RAW: '.$layer->dump."\n";

          # Read a raw layer
          my $layer = Net::Frame::Layer::ARP->new(raw => $raw);

          print $layer->print."\n";
          print 'PAYLOAD: '.unpack('H*', $layer->payload)."\n"
             if $layer->payload;

See Also