1.2.5.13 ADP_MANAGEMENT_NOTIFICATIONS Struct
C
typedef struct
{
    ADP_DISCOVERY_CFM_CALLBACK         discoveryConfirm;
    ADP_DISCOVERY_IND_CALLBACK         discoveryIndication;
    ADP_NETWORK_START_CFM_CALLBACK     networkStartConfirm;
    ADP_RESET_CFM_CALLBACK             resetConfirm;
    ADP_SET_CFM_CALLBACK               setConfirm;
    ADP_MAC_SET_CFM_CALLBACK           macSetConfirm;
    ADP_GET_CFM_CALLBACK               getConfirm;
    ADP_MAC_GET_CFM_CALLBACK           macGetConfirm;
    ADP_ROUTE_DISCOVERY_CFM_CALLBACK   routeDiscoveryConfirm;
    ADP_PATH_DISCOVERY_CFM_CALLBACK    pathDiscoveryConfirm;
    ADP_NETWORK_STATUS_IND_CALLBACK    networkStatusIndication;
    ADP_PREQ_IND_CALLBACK              preqIndication;
    ADP_NON_VOLATILE_DATA_IND_CALLBACK nonVolatileDataIndication;
    ADP_ROUTE_NOT_FOUND_IND_CALLBACK   routeNotFoundIndication;
    ADP_BUFFER_IND_CALLBACK            bufferIndication;
} ADP_MANAGEMENT_NOTIFICATIONS;Summary
Set of event handler function pointers to receive management events from ADP.
Description
Defines the set of callback functions that ADP uses to generate management events to upper layer.
Field description:
discoveryConfirm. The Dsicovery Confirm Event Handler function. See ADP_DISCOVERY_CFM_CALLBACK.
discoveryIndication. The Discovery Indication Event Handler function. See ADP_DISCOVERY_IND_CALLBACK.
networkStartConfirm. The Network Start Confirm Event Handler function. See ADP_NETWORK_START_CFM_CALLBACK.
resetConfirm. The Reset Confirm Event Handler function. See ADP_RESET_CFM_CALLBACK.
setConfirm. The Set Confirm Event Handler function. See ADP_SET_CFM_CALLBACK.
macSetConfirm. The Mac Set Confirm Event Handler function. See ADP_MAC_SET_CFM_CALLBACK.
getConfirm. The Get Confirm Event Handler function. See ADP_GET_CFM_CALLBACK.
macGetConfirm. The Mac Get Confirm Event Handler function. See ADP_MAC_GET_CFM_CALLBACK.
routeDiscoveryConfirm. The Route Discovery Confirm Event Handler function. See ADP_ROUTE_DISCOVERY_CFM_CALLBACK.
pathDiscoveryConfirm. The Path Discovery Confirm Event Handler function. See ADP_PATH_DISCOVERY_CFM_CALLBACK.
networkStatusIndication. The Network Status Indication Event Handler function. See ADP_NETWORK_STATUS_IND_CALLBACK.
preqIndication. The Path Request Indication Event Handler function. See ADP_PREQ_IND_CALLBACK.
nonVolatileDataIndication. The Non Volatile Data Indication Event Handler function. See ADP_NON_VOLATILE_DATA_IND_CALLBACK.
routeNotFoundIndication. The Route Not Found Indication Event Handler function. See ADP_ROUTE_NOT_FOUND_IND_CALLBACK.
bufferIndication. The Buffer Indication Event Handler function. See ADP_BUFFER_IND_CALLBACK.
Remarks
In case an event is to be ignored, setting its corresponding callback function to NULL will lead to the event not being generated.
