Class IPv6RoutingHeader

File: src/networklayer/ipv6/IPv6ExtensionHeaders.msg

Routing Header RFC 2460 Section 4.4 Next Header Value: 43

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Extends:

Name Type Description
IPv6ExtensionHeader class

This serves as the base class for all the other extension headers.

Fields:

Name Type Description
routingType unsigned char
segmentsLeft unsigned char
address IPv6Address[]

Source code:

//
// Routing Header
// RFC 2460 Section 4.4
// Next Header Value: 43
//
class IPv6RoutingHeader extends IPv6ExtensionHeader
{
    unsigned char routingType;
    unsigned char segmentsLeft;
    IPv6Address address[];
}