GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
NetPacket::IPX(3) User Contributed Perl Documentation NetPacket::IPX(3)

NetPacket::IPX - Assemble and disassemble IPX packets

version 1.6.0

  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 => "...",
  );

"NetPacket::IPX" is a "NetPacket" class for encoding and decoding IPX packets.

Decode a packet and return a "NetPacket::IPX" instance.

Return the encoded form of a "NetPacket::IPX" instance.

Construct a "NetPacket::IPX" instance with arbitrary contents. All arguments listed in the SYNOPSIS are mandatory.

Throws an exception on missing/invalid arguments.

The following fields are available in a "NetPacket::IPX" instance:
tc
Traffic Control field, the number of routers an IPX packet has passed through.
type
Type field.
dest_network
Destination network number, in the format "XX:XX:XX:XX".
dest_node
Destination node number, in the format "XX:XX:XX:XX:XX:XX".
dest_socket
Destination socket number.
src_network
Source network number, in the format "XX:XX:XX:XX".
dest_node
Source node number, in the format "XX:XX:XX:XX:XX:XX".
dest_socket
Source socket number.
data
Packet payload.

Copyright (C) 2014 Daniel Collins

This module is free software. You can redistribute it and/or modify it under the same terms as Perl itself.

Daniel Collins <solemnwarning@solemnwarning.net>
2015-03-13 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.