blob: 49b1d95038c496021b79975c0d0985f7542abf7c [file] [log] [blame]
Adriana Kobylak5d6481f2015-10-29 21:44:55 -05001#ifndef __HOST_IPMI_TRANSPORT_HANDLER_H__
2#define __HOST_IPMI_TRANSPORT_HANDLER_H__
3
4// IPMI commands for Transport net functions.
5enum 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
13enum ipmi_transport_return_codes
14{
15 IPMI_CC_PARM_NOT_SUPPORTED = 0x80,
16};
17
18#endif