|
NAMENetPacket::IPX - Assemble and disassemble IPX packets VERSIONversion 1.7.2 SYNOPSIS use NetPacket::IPX;
my $ipx = NetPacket::IPX->decode($raw_pkt);
my $raw_pkt = $ipx->encode();
my $ipx = NetPacket::IPX->new(
tc => 0,
type => 1,
dest_network => "00:00:00:01",
dest_node => "FF:FF:FF:FF:FF:FF",
dest_socket => 1234,
src_network => "00:00:00:01",
src_node => "12:34:56:78:90:AB",
src_socket => 5678,
data => "...",
);
DESCRIPTION"NetPacket::IPX" is a "NetPacket" class for encoding and decoding IPX packets. METHODSdecode($raw_pkt)Decode a packet and return a "NetPacket::IPX" instance. encode()Return the encoded form of a "NetPacket::IPX" instance. new(%options)Construct a "NetPacket::IPX" instance with arbitrary contents. All arguments listed in the SYNOPSIS are mandatory. Throws an exception on missing/invalid arguments. INSTANCE DATAThe following fields are available in a "NetPacket::IPX" instance:
COPYRIGHTCopyright (C) 2014 Daniel Collins This module is free software. You can redistribute it and/or modify it under the same terms as Perl itself. AUTHORDaniel Collins <solemnwarning@solemnwarning.net>
|