Control info attached to packets sent from IP to ARP.
Next hop address is used on a LAN to determine the MAC destination address (and it may be used on other multicast networks for similar addressing purpose).
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Name | Type | Description |
---|---|---|
interfaceId | int |
interface on which dgram should be sent (see InterfaceTable) |
nextHopAddr | IPAddress |
// // Control info attached to packets sent from IP to ARP. // // Next hop address is used on a LAN to determine the MAC destination // address (and it may be used on other multicast networks for similar // addressing purpose). // class IPRoutingDecision { int interfaceId = -1; // interface on which dgram should be sent (see InterfaceTable) IPAddress nextHopAddr; }