# # $Id: Address.pm 1640 2009-11-09 17:58:27Z gomor $ # package Net::Packet::CDP::Address; use strict; use warnings; require Net::Packet::Layer4; our @ISA = qw(Net::Packet::Layer4); use Net::Packet::Consts qw(:cdp); use Net::Packet::Utils qw(inetAton inetNtoa); our @AS = qw( protocolType protocolLength protocol addressLength address ); __PACKAGE__->cgBuildIndices; __PACKAGE__->cgBuildAccessorsScalar(\@AS); #no strict 'vars'; sub new { shift->SUPER::new( protocolType => NP_CDP_ADDRESS_PROTOCOL_TYPE_NLPID, protocolLength => NP_CDP_ADDRESS_PROTOCOL_LENGTH_NLPID, protocol => NP_CDP_ADDRESS_PROTOCOL_IP, addressLength => NP_CDP_ADDRESS_ADDRESS_LENGTH_IP, address => '127.0.0.1', @_, ); } sub pack { my $self = shift; $self->raw($self->SUPER::pack('CCCna4', $self->protocolType, $self->protocolLength, $self->protocol, $self->addressLength, inetAton($self->address), )) or return undef; 1; } sub unpack { my $self = shift; my ($protocolType, $protocolLength, $protocol, $addressLength, $tail) = $self->SUPER::unpack('CCCn a*', $self->raw) or return undef; $self->protocolType($protocolType); $self->protocolLength($protocolLength); $self->protocol($protocol); $self->addressLength($addressLength); my $payload; if ($protocol eq NP_CDP_ADDRESS_PROTOCOL_IP) { my ($address, $lPayload) = $self->SUPER::unpack('a4 a*', $tail) or return undef; $self->address(inetNtoa($address)); $payload = $lPayload; } else { # Unknown } $self->payload($payload); 1; } sub print { my $self = shift; my $i = $self->is; my $l = $self->layer; sprintf "$l: $i: protocolType:0x%02x protocolLength:%d protocol:0x%02x\n". "$l: $i: addressLength:%d address:%s", $self->protocolType, $self->protocolLength, $self->protocol, $self->addressLength, $self->address; } 1; __END__ =head1 NAME Net::Packet::CDP::Address - Cisco Discovery Protocol Address format =head1 SYNOPSIS use Net::Packet::Consts qw(:cdp); require Net::Packet::CDP::Address; # Build a layer my $layer = Net::Packet::CDP::Address->new( protocolType => NP_CDP_ADDRESS_PROTOCOL_TYPE_NLPID, protocolLength => NP_CDP_ADDRESS_PROTOCOL_LENGTH_NLPID, protocol => NP_CDP_ADDRESS_PROTOCOL_IP, addressLength => NP_CDP_ADDRESS_ADDRESS_LENGTH_IP, address => '127.0.0.1', ); $layer->pack; print 'RAW: '.unpack('H*', $layer->raw)."\n"; # Read a raw layer my $layer = Net::Packet::CDP::Address->new(raw => $raw); print $layer->print."\n"; print 'PAYLOAD: '.unpack('H*', $layer->payload)."\n" if $layer->payload; =head1 DESCRIPTION This modules implements the encoding and decoding of the Cisco Discovery Protocol Address format. =head1 ATTRIBUTES =over 4 =item B - 8 bits =item B - 8 bits =item B - 8 bits =item B - 16 bits =item B
- 32 bits =back =head1 METHODS =over 4 =item B Object constructor. You can pass attributes that will overwrite default ones. Default values: protocolType: NP_CDP_ADDRESS_PROTOCOL_TYPE_NLPID protocolLength: NP_CDP_ADDRESS_PROTOCOL_LENGTH_NLPID protocol: NP_CDP_ADDRESS_PROTOCOL_IP addressLength: NP_CDP_ADDRESS_ADDRESS_LENGTH_IP address: '127.0.0.1' =item B Packs all attributes into a raw format, in order to inject to network. Returns 1 on success, undef otherwise. =item B Unpacks raw data from network and stores attributes into the object. Returns 1 on success, undef otherwise. =back =head1 CONSTANTS =over 4 =item B =item B =item B =item B See also B for other CONSTANTS. =back =head1 AUTHOR Patrice EGomoRE Auffret =head1 COPYRIGHT AND LICENSE Copyright (c) 2004-2009, Patrice EGomoRE Auffret You may distribute this module under the terms of the Artistic license. See LICENSE.Artistic file in the source distribution archive. =head1 RELATED MODULES L, L, L =cut