1.3.2.3.30 MAC_WRP_SnifferIndication Typedef

C

typedef void (*MAC_WRP_SnifferIndication)(MAC_WRP_SNIFFER_INDICATION_PARAMS *siParams);

Summary

Pointer to a Sniffer Indication Event handler function.

Description

This data type defines the required function signature for the MAC Wrapper Sniffer Indication event handling callback function. 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 Sniffer Indication events back from module.

Returns

None.

Example

App_SnifferIndication(MAC_WRP_SNIFFER_INDICATION_PARAMS *params)
{
    // Send frame to a sniffing handling module
    App_SnifferHandlingTool(params);
}

Remarks

None.