Device API > BS2_RemoveAllAuthOperatorLevelEx


[+ 2.6.3] Removes all device operators.
When using BS2_SetAuthConfig, BS2_GetAuthConfig, there is a limitation that you can set operators up to 10.
The new API below accommodates setting operators up to 1,000.

CAUTION
The exsiting BS2AuthConfig and operators are valid until you call the new API. However, if at any one time you call the newly added API below, the existing BS2AuthConfigsetting will be ignored so you need to use only the new API and structure.
If you want to use the new API with the new structure, please move the operator list managed by existing BS2AuthConfig securely to the new structure BS2AuthOperatorLevel where can manage 1000 operators.

Declaration

#include "BS_API.h"
 
int BS2_RemoveAllAuthOperatorLevelEx(void* context, BS2_DEVICE_ID deviceId);

Parameter

  • [In] context : Context
  • [In] deviceId : Device ID

Return Value

If successfully done, BS_SDK_SUCCESS will be returned. If there is an error, the corresponding error code will be returned.

See Also