blob: f4344935499190d844b3b08814bb3402c61729f1 [file] [log] [blame]
Patrick Venture5e6ac712017-10-25 12:16:19 -07001#include "ipmid.hpp"
2
3/** @brief The SET watchdog IPMI command.
4 *
5 * @param[in] netfn
6 * @param[in] cmd
7 * @param[in] request
8 * @param[in,out] response
9 * @param[out] data_len
10 * @param[in] context
11 *
12 * @return IPMI_CC_OK on success, -1 otherwise.
13 */
Patrick Venture894571d2017-11-09 14:46:54 -080014ipmi_ret_t ipmi_app_set_watchdog(
15 ipmi_netfn_t netfn,
16 ipmi_cmd_t cmd,
17 ipmi_request_t request,
18 ipmi_response_t response,
19 ipmi_data_len_t data_len,
20 ipmi_context_t context);
Patrick Venture5e6ac712017-10-25 12:16:19 -070021
22/** @brief The RESET watchdog IPMI command.
23 *
24 * @param[in] netfn
25 * @param[in] cmd
26 * @param[in] request
27 * @param[in,out] response
28 * @param[out] data_len
29 * @param[in] context
30 *
31 * @return IPMI_CC_OK on success, -1 otherwise.
32 */
Patrick Venture894571d2017-11-09 14:46:54 -080033ipmi_ret_t ipmi_app_reset_watchdog(
34 ipmi_netfn_t netfn,
35 ipmi_cmd_t cmd,
36 ipmi_request_t request,
37 ipmi_response_t response,
38 ipmi_data_len_t data_len,
39 ipmi_context_t context);
Patrick Venture5e6ac712017-10-25 12:16:19 -070040