[][src]Function openthread_sys::otLinkFilterGetNextRssIn

pub unsafe extern "C" fn otLinkFilterGetNextRssIn(
    aInstance: *mut otInstance,
    aIterator: *mut otMacFilterIterator,
    aEntry: *mut otMacFilterEntry
) -> otError

This method gets an in-use RssIn filter entry.

@param[in] aInstance A pointer to an OpenThread instance. @param[inout] aIterator A reference to the MAC filter iterator context. To get the first in-use RssIn Filter entry, it should be set to OT_MAC_FILTER_ITERATOR_INIT. @param[out] aEntry A reference to where the information is placed. The last entry would have the extended address as all 0xff to indicate the default received signal strength if it was set.

@retval OT_ERROR_NONE Successfully retrieved an in-use RssIn Filter entry. @retval OT_ERROR_INVALID_ARGS If @p aIterator or @p aEntry is NULL. @retval OT_ERROR_NOT_FOUND No subsequent entry exists.

@sa otLinkFilterGetAddressMode @sa otLinkFilterSetAddressMode @sa otLinkFilterAddAddress @sa otLinkFilterRemoveAddress @sa otLinkFilterClearAddresses @sa otLinkFilterGetNextAddress @sa otLinkFilterAddRssIn @sa otLinkFilterRemoveRssIn @sa otLinkFilterClearRssIn