NAME
Farly::Transport::Protocol - TCP/IP protocol class
DESCRIPTION
Represents an 8 bit TCP/IP protocol integer as an object
METHODS
new()
The constructor.
my
$protocol
= Farly::Transport::Protocol->new();
No arguments.
protocol()
Returns the integer protocol number.
my
$8_bit_int =
$protocol
->protocol();
equals( <Farly::Transport::Protocol> )
Returns true if the protocols are equal.
$protocol
->equals(
$protocol_2
);
contains( <Farly::Transport::Protocol> )
Returns true if $protocol is "ip" or all protocols. Returns true if the protocols are equal.
$protocol
->contains(
$protocol_2
);
intersects( <Farly::Transport::Protocol> )
Returns true if the protocols are equal.
$protocol
->intersects(
$protocol_2
);
as_string()
Returns the string value
$protocol
->as_string();
COPYRIGHT AND LICENSE
Farly::Transport::Protocol 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/.