ZPS_tsAplZdpMgmtBindRsp#
This structure is used to store Mgmt_Bind_rsp message data - a response to a call to the function ZPS_eAplZdpMgmtBindRequest(). This response reports the contents of the remote node’s Binding table.
The ZPS_tsAplZdpMgmtBindRspstructure is detailed below.
typedef struct {
uint8 u8Status;
uint16 u16BindingTableEntries;
uint16 u16StartIndex;
uint16 u16BindingTableListCount;
/* Rest of the message is variable length */
ZPS_tsAplZdpBindingTable sBindingTableList;
} ZPS_tsAplZdpMgmtBindRsp;
where:
u8Statusis the return status for ZPS_eAplZdpMgmtBindRequest()u16BindingTableEntriesis the total number of Binding table entries on the remote nodeu8StartIndexis the Binding table index of the first entry reported in this response (throughsBindingTableList)u16BindingTableListCountis the number of Binding table entries reported in this response (throughsBindingTableList)sBindingTableListis a pointer to the first entry in the list of reported Binding table entries. Each entry is of the typeZPS_tsAplZdpBindingTable, detailed in Section 9.2.2.29
Parent topic:ZDP response structures