1.2.5.63 ADP_ROUTE_NOT_FOUND_IND_CALLBACK Typedef

C

typedef void (*ADP_ROUTE_NOT_FOUND_IND_CALLBACK)(ADP_ROUTE_NOT_FOUND_IND_PARAMS* pRouteNotFoundInd);

Summary

Pointer to a Route Not Found Indication Event handler function.

Description

This data type defines the required function signature for the ADP Route Not Found Indication event handling callback function. The ADP Route Not Found Indication primitive is used to indicate the upper layer that a route is not available. A client must register a pointer using the event handling function whose function signature (parameter and return value types) matches the types specified by this function pointer in order to receive Route Not Found Indication events back from module.

Returns

None.

Example

App_RouteNotFoundIndication(ADP_ROUTE_NOT_FOUND_IND_PARAMS *params)
{
    // Handle Route Not Found Indication
}

Remarks

None.