pub unsafe extern "C" fn otBorderRoutingGetNextPrefixTableEntry(
    aInstance: *mut otInstance,
    aIterator: *mut otBorderRoutingPrefixTableIterator,
    aEntry: *mut otBorderRoutingPrefixTableEntry
) -> otError
Expand description

Iterates over the entries in the Border Router’s discovered prefix table.

Prefix entries associated with the same discovered router on an infrastructure link are guaranteed to be grouped together (retrieved back-to-back).

@param[in] aInstance The OpenThread instance. @param[in,out] aIterator A pointer to the iterator. @param[out] aEntry A pointer to the entry to populate.

@retval OT_ERROR_NONE Iterated to the next entry, @p aEntry and @p aIterator are updated. @retval OT_ERROR_NOT_FOUND No more entries in the table.