Ipv6DestinationOptionsHeader

Ipv6DestinationOptionsHeader

class

Destination Options Header RFC 2460 Section 4.6 Next Header Value: 60

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 Ipv6 extension headers.

Known subclasses

Name Type Description
HomeAddressOption class

17.10.07 - CB

Fields

Name Type Description
extensionType short
byteLength B

byteLength = n * 8;

tlvOptions TlvOptions

Source code

//
// Destination Options Header
// RFC 2460 Section 4.6
// Next Header Value: 60
//
class Ipv6DestinationOptionsHeader extends Ipv6ExtensionHeader
{
    extensionType = IP_PROT_IPv6EXT_DEST;
    byteLength = B(8);    // utils::roundUp(2 + tlvOptions.getLength(), 8);
    TlvOptions tlvOptions;
}

File: src/inet/networklayer/ipv6/Ipv6ExtensionHeaders.msg