The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Farly::IPv4::ICMPType - ICMP type number

DESCRIPTION

Represents an ICMP type number as an object

METHODS

new()

The constructor.

   my $type = Farly::IPv4::ICMPType->new();

No arguments.

type()

Returns the integer type number.

  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/.