1 Star 0 Fork 0

叶海丰/ipmi-go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
cmd_get_bmc_global_enables.go 1.45 KB
一键复制 编辑 原始数据 按行查看 历史
叶海丰 提交于 1年前 . init
package ipmi
// 22.2 Get BMC Global Enables Command
type GetBMCGlobalEnablesRequest struct {
// empty
}
type GetBMCGlobalEnablesResponse struct {
OEM2Enabled bool
OEM1Enabled bool
OEM0Enabled bool
SystemEventLoggingEnabled bool
EventMessageBufferEnabled bool
EventMessageBufferFullInterruptEnabled bool
ReceiveMessageQueueInterruptEnabled bool
}
func (req *GetBMCGlobalEnablesRequest) Command() Command {
return CommandGetBMCGlobalEnables
}
func (req *GetBMCGlobalEnablesRequest) Pack() []byte {
return []byte{}
}
func (res *GetBMCGlobalEnablesResponse) Unpack(msg []byte) error {
if len(msg) < 1 {
return ErrUnpackedDataTooShortWith(len(msg), 1)
}
b, _, _ := unpackUint8(msg, 0)
res.OEM2Enabled = isBit7Set(b)
res.OEM1Enabled = isBit6Set(b)
res.OEM0Enabled = isBit5Set(b)
res.SystemEventLoggingEnabled = isBit3Set(b)
res.EventMessageBufferEnabled = isBit2Set(b)
res.EventMessageBufferFullInterruptEnabled = isBit1Set(b)
res.ReceiveMessageQueueInterruptEnabled = isBit0Set(b)
return nil
}
func (*GetBMCGlobalEnablesResponse) CompletionCodes() map[uint8]string {
// no command-specific cc
return map[uint8]string{}
}
func (res *GetBMCGlobalEnablesResponse) Format() string {
// Todo
return ""
}
func (c *Client) GetBMCGlobalEnables() (response *GetBMCGlobalEnablesResponse, err error) {
request := &GetBMCGlobalEnablesRequest{}
response = &GetBMCGlobalEnablesResponse{}
err = c.Exchange(request, response)
return
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/rogax/ipmi-go.git
git@gitee.com:rogax/ipmi-go.git
rogax
ipmi-go
ipmi-go
86ae46cfb58e

搜索帮助