IPv6FragmentHeader

Namespace inet

IPv6FragmentHeader

class

Fragment Header RFC 2460 Section 4.5 Next Header Value: 44

Extends

Name Type Description
IPv6ExtensionHeader (unknown -- not in documented files)

Fields

Name Type Description
extensionType
byteLength
fragmentOffset unsigned short
identification unsigned int

datagram ID: identifies which datagram this fragment belongs to.

moreFragments bool

Is this the last fragment?

Source code

//
// Fragment Header
// RFC 2460 Section 4.5
// Next Header Value: 44
//
class IPv6FragmentHeader extends IPv6ExtensionHeader
{
    extensionType = IP_PROT_IPv6EXT_FRAGMENT;
    byteLength = IPv6_FRAGMENT_HEADER_LENGTH;
    unsigned short fragmentOffset;
    unsigned int identification;  // datagram ID: identifies which datagram this fragment belongs to.
    bool moreFragments; //Is this the last fragment?
}

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