NAME
Farly::IPv4::ICMPType - IPv4 ICMP type class
DESCRIPTION
Represents an 8 bit ICMP type integer as an object
METHODS
new()
The constructor.
my $type = Farly::IPv4::ICMPType->new( $number );
An digit between -1 and 255 is required.
type()
Returns the 8 bit ICMP type integer.
my $8_bit_int = $type->type();
equals( <Farly::IPv4::ICMPType> )
Returns true if the ICMP types are equal.
$type->equals( $type_2 );
contains( <Farly::IPv4::ICMPType> )
Returns true if $type is '-1' (any) ICMP type. Returns true if the types are equal.
$type->contains( $type_2 );
intersects( <Farly::IPv4::ICMPType> )
Returns true if the types are equal.
$type->intersects( $type_2 );
as_string()
Returns the string value
$type->as_string();
COPYRIGHT AND LICENSE
Farly::IPv4::ICMPType Copyright (C) 2012 Trystan Johnson
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.