Class IPRoutingDecision

File: Network/Contract/IPControlInfo.msg

C++ definition: click here

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).

Inheritance diagram:

The following diagram shows part of the inheritance hierarchy. Unresolved types are missing from the diagram. Click here to see the full picture.

Properties:

Name Value Description
omitGetVerb true

Fields:

Name Type Description
interfaceId int

interface on which dgram should be sent (see InterfaceTable)

nextHopAddr IPAddress

Source code:

class IPRoutingDecision
{
    properties:
        omitGetVerb = true;
    fields:
        int interfaceId = -1; // interface on which dgram should be sent (see InterfaceTable)
        IPAddress nextHopAddr;
};