otBorderRoutingGetNextIfAddrEntry

Function otBorderRoutingGetNextIfAddrEntry 

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

Iterates over the infrastructure interface address entries.

These are addresses used by the BR itself, for example, when sending Router Advertisements.

@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 address entry, @p aEntry and @p aIterator are updated. @retval OT_ERROR_NOT_FOUND No more entries in the table. @retval OT_ERROR_INVALID_ARGS The iterator is invalid (used to iterate over other entry types, e.g., prefix).