| Richard Marian Thomaiyar | 5a6b636 | 2018-03-12 23:42:34 +0530 | [diff] [blame] | 1 | /* | 
 | 2 | // Copyright (c) 2018 Intel Corporation | 
 | 3 | // | 
 | 4 | // Licensed under the Apache License, Version 2.0 (the "License"); | 
 | 5 | // you may not use this file except in compliance with the License. | 
 | 6 | // You may obtain a copy of the License at | 
 | 7 | // | 
 | 8 | //      http://www.apache.org/licenses/LICENSE-2.0 | 
 | 9 | // | 
 | 10 | // Unless required by applicable law or agreed to in writing, software | 
 | 11 | // distributed under the License is distributed on an "AS IS" BASIS, | 
 | 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
 | 13 | // See the License for the specific language governing permissions and | 
 | 14 | // limitations under the License. | 
 | 15 | */ | 
 | 16 |  | 
 | 17 | #pragma once | 
 | 18 | #include <cstdint> | 
 | 19 |  | 
 | 20 | namespace ipmi | 
 | 21 | { | 
 | 22 | // IPMI commands for user command NETFN:APP. | 
 | 23 | enum ipmi_netfn_user_cmds | 
 | 24 | { | 
 | 25 |     IPMI_CMD_SET_USER_ACCESS = 0x43, | 
 | 26 |     IPMI_CMD_GET_USER_ACCESS = 0x44, | 
 | 27 |     IPMI_CMD_SET_USER_NAME = 0x45, | 
 | 28 |     IPMI_CMD_GET_USER_NAME = 0x46, | 
 | 29 |     IPMI_CMD_SET_USER_PASSWORD = 0x47, | 
 | 30 | }; | 
 | 31 |  | 
| Richard Marian Thomaiyar | 282e79b | 2018-11-13 19:00:58 +0530 | [diff] [blame] | 32 | enum class IPMISetPasswordReturnCodes | 
 | 33 | { | 
 | 34 |     ipmiCCPasswdFailMismatch = 0x80, | 
 | 35 |     ipmiCCPasswdFailWrongSize = 0x81, | 
 | 36 | }; | 
 | 37 |  | 
| Richard Marian Thomaiyar | 5a6b636 | 2018-03-12 23:42:34 +0530 | [diff] [blame] | 38 | static constexpr uint8_t userIdEnabledViaSetPassword = 0x1; | 
 | 39 | static constexpr uint8_t userIdDisabledViaSetPassword = 0x2; | 
 | 40 |  | 
 | 41 | void registerUserIpmiFunctions(); | 
 | 42 | } // namespace ipmi |