blob: 49b1d95038c496021b79975c0d0985f7542abf7c [file] [log] [blame]
#ifndef __HOST_IPMI_TRANSPORT_HANDLER_H__
#define __HOST_IPMI_TRANSPORT_HANDLER_H__
// IPMI commands for Transport net functions.
enum ipmi_netfn_storage_cmds
{
// Get capability bits
IPMI_CMD_SET_LAN = 0x01,
IPMI_CMD_GET_LAN = 0x02,
};
// Command specific completion codes
enum ipmi_transport_return_codes
{
IPMI_CC_PARM_NOT_SUPPORTED = 0x80,
};
#endif