1.2.5.54 ADP_PATH_DISCOVERY_CFM_CALLBACK Typedef

C

typedef void (*ADP_PATH_DISCOVERY_CFM_CALLBACK)(ADP_PATH_DISCOVERY_CFM_PARAMS* pPathDiscoveryCfm);

Summary

Pointer to a Path Discovery Confirm Event handler function.

Description

This data type defines the required function signature for the ADP Path Discovery Confirm event handling callback function. The ADP Path Discovery Confirm primitive allows the upper layer to be notified of the completion of an ADP Path Discovery Request. 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 Path Discovery Confirm events back from module.

Returns

None.

Example

App_PathDiscoveryConfirm(ADP_LBP_CFM_PARAMS *params)
{
    // Check result
    if (params->status == G3_SUCCESS)
    {

    }
}

Remarks

None.