forked from bougou/go-ipmi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmd_add_sel_entry.go
48 lines (39 loc) · 1.06 KB
/
cmd_add_sel_entry.go
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
package ipmi
import "fmt"
// 31.6 Add SEL Entry Command
type AddSELEntryRequest struct {
SEL *SEL
}
type AddSELEntryResponse struct {
RecordID uint16 // Record ID for added record, LS Byte first
}
func (req *AddSELEntryRequest) Command() Command {
return CommandAddSELEntry
}
func (req *AddSELEntryRequest) Pack() []byte {
return req.SEL.Pack()
}
func (res *AddSELEntryResponse) Unpack(msg []byte) error {
if len(msg) < 2 {
return ErrUnpackedDataTooShort
}
res.RecordID, _, _ = unpackUint16L(msg, 0)
return nil
}
func (res *AddSELEntryResponse) CompletionCodes() map[uint8]string {
return map[uint8]string{
0x80: "operation not supported for this Record Type",
0x81: "cannot execute command, SEL erase in progress",
}
}
func (res *AddSELEntryResponse) Format() string {
return fmt.Sprintf("Record ID : %d (%#02x)", res.RecordID, res.RecordID)
}
func (c *Client) AddSELEntry(sel *SEL) (response *AddSELEntryResponse, err error) {
request := &AddSELEntryRequest{
SEL: sel,
}
response = &AddSELEntryResponse{}
err = c.Exchange(request, response)
return
}