summaryrefslogtreecommitdiffstats
path: root/user_channel/usercommands.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'user_channel/usercommands.hpp')
-rw-r--r--user_channel/usercommands.hpp36
1 files changed, 36 insertions, 0 deletions
diff --git a/user_channel/usercommands.hpp b/user_channel/usercommands.hpp
new file mode 100644
index 0000000..ee33b5a
--- /dev/null
+++ b/user_channel/usercommands.hpp
@@ -0,0 +1,36 @@
+/*
+// Copyright (c) 2018 Intel Corporation
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+*/
+
+#pragma once
+#include <cstdint>
+
+namespace ipmi
+{
+// IPMI commands for user command NETFN:APP.
+enum ipmi_netfn_user_cmds
+{
+ IPMI_CMD_SET_USER_ACCESS = 0x43,
+ IPMI_CMD_GET_USER_ACCESS = 0x44,
+ IPMI_CMD_SET_USER_NAME = 0x45,
+ IPMI_CMD_GET_USER_NAME = 0x46,
+ IPMI_CMD_SET_USER_PASSWORD = 0x47,
+};
+
+static constexpr uint8_t userIdEnabledViaSetPassword = 0x1;
+static constexpr uint8_t userIdDisabledViaSetPassword = 0x2;
+
+void registerUserIpmiFunctions();
+} // namespace ipmi
OpenPOWER on IntegriCloud