Namespace inet
IPv6NeighbourAdvertisement
packetNeighbour Advertisement Message Format RFC 2461 Section 4.4
Extends
Name | Type | Description |
---|---|---|
IPv6NDMessage | (unknown -- not in documented files) |
Fields
Name | Type | Description |
---|---|---|
routerFlag | bool |
Additional ICMP fields |
solicitedFlag | bool |
S-flag |
overrideFlag | bool |
O-flag |
targetAddress | IPv6Address |
MUST NOT be a multicast address. |
targetLinkLayerAddress | MACAddress |
Possible Options |
Source code
// // Neighbour Advertisement Message Format // RFC 2461 Section 4.4 // packet IPv6NeighbourAdvertisement extends IPv6NDMessage { //Additional ICMP fields bool routerFlag; //R-flag bool solicitedFlag; //S-flag bool overrideFlag; //O-flag IPv6Address targetAddress;// MUST NOT be a multicast address. //Possible Options MACAddress targetLinkLayerAddress; //Target Link Layer Address option }File: src/inet/networklayer/icmpv6/IPv6NDMessage.msg