Class IPv6NDPrefixInformation

File: src/networklayer/icmpv6/IPv6NDMessage.msg

IPv6ND Prefix Information RFC 2461 Section 4.6.2

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.

Fields:

Name Type Description
onlinkFlag bool
prefix IPv6Address
preferredLifetime unsigned int
autoAddressConfFlag bool
validLifetime unsigned int
prefixLength unsigned int

Source code:

//
// IPv6ND Prefix Information
// RFC 2461 Section 4.6.2
//
class IPv6NDPrefixInformation
{
    unsigned int prefixLength;
    bool onlinkFlag;
    bool autoAddressConfFlag;
    unsigned int validLifetime;
    unsigned int preferredLifetime;
    IPv6Address prefix;
}