Class IPv6EncapsulatingSecurityPayloadHeader

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

C++ definition

Encapsulating Security Payload Header RFC 2406 Not Implemented

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
extensionType short
byteLength short

byteLength = n * 8;

Source code:

//
// Encapsulating Security Payload Header
// RFC 2406
// Not Implemented
//
class IPv6EncapsulatingSecurityPayloadHeader extends IPv6ExtensionHeader
{
    extensionType = IP_PROT_IPv6EXT_ESP;
    byteLength = 8; // FIXME verify
}