Implement MleRouter::GetNextNeighborInfo() method (#724)

This commit is contained in:
Abtin Keshavarzian
2016-09-30 16:09:01 -07:00
committed by Jonathan Hui
parent 7325d2edf4
commit 95d2e8cdec
4 changed files with 86 additions and 5 deletions
+3 -2
View File
@@ -1703,8 +1703,9 @@ ThreadError otGetChildInfoByIndex(otInstance *aInstance, uint8_t aChildIndex, ot
it should be set to OT_NEIGHBOR_INFO_ITERATOR_INIT.
* @param[out] aInfo A pointer to where the neighbor information will be placed.
*
* @retval kThreadError_None Successfully found the next neighbor entry in table.
* @retval kThreadError_NotFound No subsequent neighbor entry exists in the table.
* @retval kThreadError_None Successfully found the next neighbor entry in table.
* @retval kThreadError_NotFound No subsequent neighbor entry exists in the table.
* @retval kThreadError_InvalidArgs @p aIterator or @p aInfo was NULL.
*
*/
ThreadError otGetNextNeighborInfo(otInstance *aInstance, otNeighborInfoIterator *aIterator, otNeighborInfo *aInfo);