Tunneling Client#
Callbacks for Tunneling Client Component.
#
Callbacks
Tunnel opened.
Data received.
Data error.
Tunnel closed.
Transfer data failure.
undefined Documentation#
sl_zigbee_af_tunneling_client_tunnel_opened_cb#
void sl_zigbee_af_tunneling_client_tunnel_opened_cb (uint8_t tunnelIndex, sl_zigbee_af_plugin_tunneling_client_status_t tunnelStatus, uint16_t maximumIncomingTransferSize)
Tunnel opened.
N/A | tunnelIndex | The index of the tunnel that has been opened. Ver.: always |
N/A | tunnelStatus | The status of the request. Ver.: always |
N/A | maximumIncomingTransferSize | The maximum incoming transfer size of the server. Ver.: always |
This function is called by the Tunneling client plugin whenever a tunnel is opened. Clients may open tunnels by sending a Request Tunnel command.
150
of file app/framework/plugin/tunneling-client/tunneling-client.h
sl_zigbee_af_tunneling_client_data_received_cb#
void sl_zigbee_af_tunneling_client_data_received_cb (uint8_t tunnelIndex, uint8_t * data, uint16_t dataLen)
Data received.
N/A | tunnelIndex | The index of the tunnel through which the data was received. Ver.: always |
N/A | data | Buffer containing the raw octets of the data. Ver.: always |
N/A | dataLen | The length in octets of the data. Ver.: always |
This function is called by the Tunneling client plugin whenever data is received from a server through a tunnel.
163
of file app/framework/plugin/tunneling-client/tunneling-client.h
sl_zigbee_af_tunneling_client_data_error_cb#
void sl_zigbee_af_tunneling_client_data_error_cb (uint8_t tunnelIndex, sl_zigbee_af_tunneling_transfer_data_status_t transferDataStatus)
Data error.
N/A | tunnelIndex | The index of the tunnel on which this data error occurred. Ver.: always |
N/A | transferDataStatus | The error that occurred. Ver.: always |
This function is called by the Tunneling client plugin whenever a data error occurs on a tunnel. Errors occur if a device attempts to send data on tunnel that is no longer active or if the tunneling does not belong to the device.
176
of file app/framework/plugin/tunneling-client/tunneling-client.h
sl_zigbee_af_tunneling_client_tunnel_closed_cb#
void sl_zigbee_af_tunneling_client_tunnel_closed_cb (uint8_t tunnelIndex)
Tunnel closed.
N/A | tunnelIndex | The index of the tunnel that has been closed. Ver.: always |
This function is called by the Tunneling client plugin whenever a server sends a notification that it preemptively closed an inactive tunnel. Servers are not required to notify clients of tunnel closures, so applications cannot rely on this callback being called for all tunnels.
188
of file app/framework/plugin/tunneling-client/tunneling-client.h
sl_zigbee_af_tunneling_client_transfer_data_failure_cb#
void sl_zigbee_af_tunneling_client_transfer_data_failure_cb (uint16_t indexOfDestination, sl_zigbee_aps_frame_t * apsFrame, uint16_t msgLen, uint8_t * message, sl_status_t status)
Transfer data failure.
N/A | indexOfDestination | The index or destination address of the TransferData command. Ver.: always |
N/A | apsFrame | The ::sl_zigbee_aps_frame_t of the command. Ver.: always |
N/A | msgLen | The length of the payload sent in the command. Ver.: always |
N/A | message | The payload that was sent in the command. Ver.: always |
N/A | status | The non-success status code from the transmission of the command. Ver.: always |
This function is called when a TransferData command fails to be sent to the intended destination.
202
of file app/framework/plugin/tunneling-client/tunneling-client.h