Adriana Kobylak | 5d6481f | 2015-10-29 21:44:55 -0500 | [diff] [blame] | 1 | #ifndef __HOST_IPMI_TRANSPORT_HANDLER_H__ |
2 | #define __HOST_IPMI_TRANSPORT_HANDLER_H__ | ||||
3 | |||||
4 | // IPMI commands for Transport net functions. | ||||
5 | enum ipmi_netfn_storage_cmds | ||||
6 | { | ||||
7 | // Get capability bits | ||||
8 | IPMI_CMD_SET_LAN = 0x01, | ||||
9 | IPMI_CMD_GET_LAN = 0x02, | ||||
10 | }; | ||||
11 | |||||
12 | // Command specific completion codes | ||||
13 | enum ipmi_transport_return_codes | ||||
14 | { | ||||
15 | IPMI_CC_PARM_NOT_SUPPORTED = 0x80, | ||||
16 | }; | ||||
17 | |||||
18 | #endif |