Skip to content

Commit

Permalink
arm_authorizer_server: we need an unknown result
Browse files Browse the repository at this point in the history
Signed-off-by: Julian Oes <[email protected]>
  • Loading branch information
julianoes committed Apr 6, 2024
1 parent acfd325 commit 738c922
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions protos/arm_authorizer_server/arm_authorizer_server.proto
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,9 @@ message RejectArmAuthorizationResponse {

message ArmAuthorizerServerResult {
enum Result {
RESULT_SUCCESS = 0; // Command accepted
RESULT_FAILED = 1; // Command failed
RESULT_UNKNOWN = 0; // Unknown result
RESULT_SUCCESS = 1; // Command accepted
RESULT_FAILED = 2; // Command failed
}

Result result = 1; // Result enum value
Expand Down

0 comments on commit 738c922

Please sign in to comment.