Platform API Reference
Platform portability layer
IotNetworkReceiveCallback_t

Provide an asynchronous notification of incoming network data.

typedef void ( * IotNetworkReceiveCallback_t )( void * pConnection,
void * pContext );

A function with this signature may be set with IotNetworkInterface_t::setReceiveCallback to be invoked when data is available on the network.

Parameters
[in]pConnectionThe connection on which data is available, defined by the network stack.
[in]pContextThe third argument passed to IotNetworkInterface_t::setReceiveCallback.
IotNetworkReceiveCallback_t
void(* IotNetworkReceiveCallback_t)(void *pConnection, void *pContext)
Provide an asynchronous notification of incoming network data.
Definition: iot_network.h:94