1.2.5.55 ADP_PATH_DISCOVERY_CFM_PARAMS Struct

C

typedef struct
{
    /* The short unicast destination address of the path discovery */
    uint16_t dstAddr;
    /* The originator of the path reply */
    uint16_t origAddr;
    /* The status of the path discovery (status can be INCOMPLETE and the other
     * parameters contain the discovered path) */
    uint8_t status;
    /* Path metric type */
    uint8_t metricType;
    /* Number of path hops in the forward table */
    uint8_t forwardHopsCount;
    /* Number of path hops in the reverse table */
    uint8_t reverseHopsCount;
    /* Table with the information of each hop in forward direction (according
     * to forwardHopsCount) */
    ADP_HOP_DESCRIPTOR forwardPath[16];
    /* Table with the information of each hop in reverse direction (according
     * to reverseHopsCount) */
    ADP_HOP_DESCRIPTOR reversePath[16];
} ADP_PATH_DISCOVERY_CFM_PARAMS;

Summary

Defines the Parameters for the ADP Path Discovery Confirm event handler function.

Description

The structure contains the fields reported by the ADP Path Discovery Confirm event handler function.

Field description:

  • dstAddr. The short destination address of the path discovery.

  • origAddr. The originator of the path reply. May the the Destination Address if Path Complete, or other address if Incomplete.

  • status. The status of the path discovery (status can be INCOMPLETE and the other parameters contain the discovered path).

  • metricType. Path metric type.

  • forwardHopsCount. Number of path hops in the forward table.

  • reverseHopsCount. Number of path hops in the reverse table.

  • forwardPath. Table with the information of each hop in forward direction.

  • reversePath. Table with the information of each hop in reverse direction.

Remarks

None.