pub unsafe extern "C" fn otCommissionerRemoveJoiner(
    aInstance: *mut otInstance,
    aEui64: *const otExtAddress
) -> otError
Expand description

Removes a Joiner entry.

@param[in] aInstance A pointer to an OpenThread instance. @param[in] aEui64 A pointer to the Joiner’s IEEE EUI-64 or NULL for any Joiner.

@retval OT_ERROR_NONE Successfully removed the Joiner. @retval OT_ERROR_NOT_FOUND The Joiner specified by @p aEui64 was not found. @retval OT_ERROR_INVALID_ARGS @p aEui64 is invalid. @retval OT_ERROR_INVALID_STATE The commissioner is not active.

@note Only use this after successfully starting the Commissioner role with otCommissionerStart().