1.2.5.64 ADP_ROUTE_NOT_FOUND_IND_PARAMS Struct

C

typedef struct
{
    /* The NSDU failed to be delivered */
    const uint8_t* pNsdu;
    /* The size of the NSDU failed to be delivered, in bytes; Range: 0 - 1280 */
    uint16_t nsduLength;
    /* Address of the frame originator */
    uint16_t srcAddr;
    /* Address of the frame final destination */
    uint16_t destAddr;
    /* Address of the next hop to frame final destination */
    uint16_t nextHopAddr;
    /* Address of the previous hop to frame final destination */
    uint16_t previousHopAddr;
    /* Route Cost of the broken route (0xFFFF if route did not exist) */
    uint16_t routeCost;
    /* Hop Count of the broken route (0xFF if route did not exist) */
    uint8_t hopCount;
    /* Weak Link Count of the broken route (0xFF if route did not exist) */
    uint8_t weakLinkCount;
    /* Indicates whether the route existed and just failed */
    bool routeJustBroken;
    /* Indicates whether the Header of the frame dropped due to No Route was
     * compressed */
    bool compressedHeader;
} ADP_ROUTE_NOT_FOUND_IND_PARAMS;

Summary

Defines the Parameters for the ADP Route Not Found Indication event handler function.

Description

The structure contains the fields reported by the ADP Route Not Found Indication event handler function.

Field description:

  • pNsdu. Pointer to NSDU failed to be delivered.

  • nsduLength. The size of the NSDU failed to be delivered, in bytes; Range: 0 - 1280.

  • srcAddr. Address of the frame originator.

  • destAddr. Address of the frame final destination.

  • nextHopAddr. Address of the next hop to frame final destination.

  • previousHopAddr. Address of the previous hop to frame final destination.

  • routeCost. Route Cost of the broken route (0xFFFF if route did not exist).

  • hopCount. Hop Count of the broken route (0xFF if route did not exist).

  • weakLinkCount. Weak Link Count of the broken route (0xFF if route did not exist).

  • routeJustBroken. Indicates whether the route existed and just failed.

  • compressedHeader. Indicates whether the Header of the frame dropped due to No Route was compressed.

Remarks

None.