Patrick Venture | 4d49ae6 | 2018-09-17 11:35:32 -0700 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Patrick Venture | eff1f2e | 2020-08-05 08:27:36 -0700 | [diff] [blame] | 3 | #include "handler.hpp" |
| 4 | |
| 5 | #include <ipmid/api.h> |
| 6 | |
Patrick Venture | 4d49ae6 | 2018-09-17 11:35:32 -0700 | [diff] [blame] | 7 | namespace google |
| 8 | { |
| 9 | namespace ipmi |
| 10 | { |
| 11 | |
Patrick Venture | eff1f2e | 2020-08-05 08:27:36 -0700 | [diff] [blame] | 12 | // Handle the google-ipmi-sys IPMI OEM commands. |
| 13 | ipmi_ret_t handleSysCommand(HandlerInterface* handler, ipmi_cmd_t cmd, |
| 14 | const uint8_t* reqBuf, uint8_t* replyCmdBuf, |
| 15 | size_t* dataLen); |
| 16 | |
Patrick Venture | 4d49ae6 | 2018-09-17 11:35:32 -0700 | [diff] [blame] | 17 | } // namespace ipmi |
| 18 | } // namespace google |