Net::Packet::PPPLCP - PPP Link Control Protocol layer 3 object


Net-Packet documentation Contained in the Net-Packet distribution.

Index


Code Index:

NAME

Top

Net::Packet::PPPLCP - PPP Link Control Protocol layer 3 object

SYNOPSIS

Top

   use Net::Packet::Consts qw(:ppplcp);
   require Net::Packet::PPPLCP;

   # Build a layer
   my $layer = Net::Packet::PPPLCP->new(
      code        => NP_PPPLCP_CODE_ECHO_REQUEST,
      identifier  => 1,
      length      => NP_PPPLCP_HDR_LEN,
      magicNumber => 0xffffffff,
   );
   $layer->pack;

   print 'RAW: '.unpack('H*', $layer->raw)."\n";

   # Read a raw layer
   my $layer = Net::Packet::PPPLCP->new(raw => $raw);

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

DESCRIPTION

Top

This modules implements the encoding and decoding of the PPP Link Control Protocol layer.

See also Net::Packet::Layer and Net::Packet::Layer3 for other attributes and methods.

ATTRIBUTES

Top

code - 8 bits
identifier - 8 bits
length - 16 bits
magicNumber - 32 bits

METHODS

Top

new

Object constructor. You can pass attributes that will overwrite default ones. Default values:

code: NP_PPPLCP_CODE_ECHO_REQUEST

identifier: 1

length: NP_PPPLCP_HDR_LEN

magicNumber: 0xffffffff

pack

Packs all attributes into a raw format, in order to inject to network. Returns 1 on success, undef otherwise.

unpack

Unpacks raw data from network and stores attributes into the object. Returns 1 on success, undef otherwise.

CONSTANTS

Top

Load them: use Net::Packet::Consts qw(:ppplcp);

NP_PPPLCP_HDR_LEN

PPP LCP header length.

NP_PPPLCP_CODE_ECHO_REQUEST
NP_PPPLCP_CODE_ECHO_REPLY

Various supported PPP LCP codes.

AUTHOR

Top

Patrice <GomoR> Auffret

COPYRIGHT AND LICENSE

Top

RELATED MODULES

Top


Net-Packet documentation Contained in the Net-Packet distribution.

#
# $Id: PPPLCP.pm 1640 2009-11-09 17:58:27Z gomor $
#
package Net::Packet::PPPLCP;
use strict;
use warnings;

require Net::Packet::Layer3;
our @ISA = qw(Net::Packet::Layer3);

use Net::Packet::Consts qw(:ppplcp :layer);

our @AS = qw(
   code
   identifier
   length
   magicNumber
);
__PACKAGE__->cgBuildIndices;
__PACKAGE__->cgBuildAccessorsScalar(\@AS);

no strict 'vars';

sub new {
   shift->SUPER::new(
      code        => NP_PPPLCP_CODE_ECHO_REQUEST,
      identifier  => 1,
      length      => NP_PPPLCP_HDR_LEN,
      magicNumber => 0xffffffff,
      @_,
   );
}

sub getLength { shift->[$__length] }

sub getPayloadLength { shift->[$__length] - NP_PPPLCP_HDR_LEN }

sub pack {
   my $self = shift;

   $self->[$__raw] = $self->SUPER::pack('CCnN',
      $self->[$__code],
      $self->[$__identifier],
      $self->[$__length],
      $self->[$__magicNumber],
   ) or return undef;

   1;
}

sub unpack {
   my $self = shift;

   my ($code, $identifier, $length, $magicNumber, $payload) =
      $self->SUPER::unpack('CCnN a*', $self->[$__raw])
         or return undef;

   $self->[$__code]        = $code;
   $self->[$__identifier]  = $identifier;
   $self->[$__length]      = $length;
   $self->[$__magicNumber] = $magicNumber;
   $self->[$__payload]     = $payload;

   1;
}

sub encapsulate {
   my $types = {
      NP_LAYER_NONE() => NP_LAYER_NONE(),
   };

   $types->{NP_LAYER_NONE()} || NP_LAYER_UNKNOWN();
}

sub print {
   my $self = shift;

   my $l = $self->layer;
   my $i = $self->is;
   sprintf "$l:+$i: code:0x%02x  identifier:0x%02x  length:%d  ".
           "magicNumber:0x%04x",
      $self->[$__code], $self->[$__identifier], $self->[$__length],
      $self->[$__magicNumber];
}

1;

__END__