From 66904ab575e516de6b978fcc6721f4e4d3c751a0 Mon Sep 17 00:00:00 2001 From: liuziwei Date: Sun, 31 Mar 2024 10:08:24 +0800 Subject: [PATCH] fix code Signed-off-by: liuziwei Change-Id: Iaf29fc2ee738e5683938c1a7681b1fb82c42a1f1 --- pin_auth/v1_1/PinAuthTypes.idl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pin_auth/v1_1/PinAuthTypes.idl b/pin_auth/v1_1/PinAuthTypes.idl index 3cf0ba02..cfdd64ce 100644 --- a/pin_auth/v1_1/PinAuthTypes.idl +++ b/pin_auth/v1_1/PinAuthTypes.idl @@ -50,7 +50,8 @@ enum GetPropertyType : int { /**< Indicates that the property to get is lockout duration. */ LOCKOUT_DURATION = 2, /**< Indicates that the property to get is remain attempts. */ - REMAIN_ATTEMPTS = 3 + REMAIN_ATTEMPTS = 3, + NEXT_FAIL_LOCKOUT_DURATION = 6 }; /** @@ -66,5 +67,6 @@ struct Property { int lockoutDuration; /**< Indicates remain attempts. */ int remainAttempts; + int nextFailLockoutDuration; }; /** @} */ \ No newline at end of file -- Gitee