1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#pragma once
#include <ipmid/api.h>
/** @brief The RESET watchdog IPMI command.
*
* @param[in] netfn
* @param[in] cmd
* @param[in] request
* @param[in,out] response
* @param[out] data_len
* @param[in] context
*
* @return IPMI_CC_OK on success, an IPMI error code otherwise.
*/
ipmi_ret_t ipmi_app_watchdog_reset(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
ipmi_request_t request,
ipmi_response_t response,
ipmi_data_len_t data_len,
ipmi_context_t context);
/** @brief The SET watchdog IPMI command.
*
* @param[in] netfn
* @param[in] cmd
* @param[in] request
* @param[in,out] response
* @param[out] data_len
* @param[in] context
*
* @return IPMI_CC_OK on success, an IPMI error code otherwise.
*/
ipmi_ret_t ipmi_app_watchdog_set(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
ipmi_request_t request,
ipmi_response_t response,
ipmi_data_len_t data_len,
ipmi_context_t context);
/** @brief The GET watchdog IPMI command.
* @param[in] netfn
* @param[in] cmd
* @param[in] request
* @param[in,out] response
* @param[out] data_len
* @param[in] context
*
* @return IPMI_CC_OK on success, an IPMI error code otherwise.
*/
ipmi_ret_t ipmi_app_watchdog_get(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
ipmi_request_t request,
ipmi_response_t response,
ipmi_data_len_t data_len,
ipmi_context_t context);
|