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
Net::Frame::Layer::IPv6::Routing(3) User Contributed Perl Documentation Net::Frame::Layer::IPv6::Routing(3)

Net::Frame::Layer::IPv6::Routing - Internet Protocol v6 Routing Extension Header layer object

   use Net::Frame::Simple;
   use Net::Frame::Layer::IPv6::Routing;

   my $icmp = Net::Frame::Layer::IPv6::Routing->new(
      nextHeader   => NF_IPv6_PROTOCOL_TCP
      hdrExtLen    => 2
      routingType  => 0,
      segmentsLeft => 1,
      reserved     => 0,
      addresses    => ['::1']
   );

   #
   # Read a raw layer
   #

   my $layer = Net::Frame::Layer::IPv6::Routing->new(raw => $raw);

   print $layer->print."\n";
   print 'PAYLOAD: '.unpack('H*', $layer->payload)."\n"
      if $layer->payload;

This modules implements the encoding and decoding of the IPv6 Routing Extension Header layer.

RFC: ftp://ftp.rfc-editor.org/in-notes/rfc2460.txt

See also Net::Frame::Layer for other attributes and methods.

nextHeader
Protocol number of the next header after the Routing header.
hdrExtLen
The length of the Routing header in 8-byte units, not including the first 8 bytes of the header. For a Routing Type of 0, this value is thus two times the number addresses embedded in the header.
routingType
This field allows multiple routing types to be defined; at present, the only value used is 0.
segmentsLeft
Specifies the number of explicitly-named nodes remaining in the route until the destination.
reserved
Not used; set to zeroes.
addresses
A set of IPv6 addresses that specify the route to be used.

The following are inherited attributes. See Net::Frame::Layer for more information.

raw
payload
nextLayer

new
new (hash)
Object constructor. You can pass attributes that will overwrite default ones. See SYNOPSIS for default values.
computeLengths
Computes hdrExtLen and segmentsLeft based on number of addresses.
computeSegmentsLeft (0 | 1)
Disable (0) or enable (1) automatic computing of segmentsLeft by the computeLengths method. Default is enabled.

The following are inherited methods. Some of them may be overridden in this layer, and some others may not be meaningful in this layer. See Net::Frame::Layer for more information.

layer
computeLengths
computeChecksums
pack
unpack
encapsulate
getLength
getPayloadLength
print
dump

No constants here.

Net::Frame::Layer

Michael Vincent

Copyright (c) 2012-2015, Michael Vincent

You may distribute this module under the terms of the Artistic license. See LICENSE.Artistic file in the source distribution archive.

2015-01-20 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.