Mipv6NdAdvertisementInterval
classMIPv6 New Advertisement Interval Option RFC 3775 Section 7.3
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Extends
Name | Type | Description |
---|---|---|
Ipv6NdOption | class | (no description) |
Fields
Name | Type | Description |
---|---|---|
type | Ipv6NdOptionTypes |
1 byte, 0 is invalid |
optionLength | short |
The length of the option in units of 8 octets, 0 is invalid. // 1 byte |
reserved | uint16_t | |
advertisementInterval | uint32_t |
milliseconds |
paddingBytes | char[] |
padding bytes on end of option |
Source code
// MIPv6 New Advertisement Interval Option // RFC 3775 Section 7.3 // class Mipv6NdAdvertisementInterval extends Ipv6NdOption { type = IPv6ND_ADVERTISEMENT_INTERVAL; optionLength = 1; uint16_t reserved; uint32_t advertisementInterval; // milliseconds }File: src/inet/networklayer/icmpv6/Ipv6NdMessage.msg