forked from bougou/go-ipmi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmd_delete_sel_entry.go
53 lines (44 loc) · 1.25 KB
/
cmd_delete_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
49
50
51
52
53
package ipmi
import "fmt"
// 31.8 Delete SEL Entry Command
type DeleteSELEntryRequest struct {
ReservationID uint16
RecordID uint16
}
type DeleteSELEntryResponse struct {
RecordID uint16
}
func (req *DeleteSELEntryRequest) Command() Command {
return CommandDeleteSELEntry
}
func (req *DeleteSELEntryRequest) Pack() []byte {
out := make([]byte, 4)
packUint16L(req.ReservationID, out, 0)
packUint16L(req.RecordID, out, 2)
return out
}
func (res *DeleteSELEntryResponse) Unpack(msg []byte) error {
if len(msg) < 2 {
return ErrUnpackedDataTooShort
}
res.RecordID, _, _ = unpackUint16L(msg, 0)
return nil
}
func (res *DeleteSELEntryResponse) 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 *DeleteSELEntryResponse) Format() string {
return fmt.Sprintf("Record ID : %d (%#02x)", res.RecordID, res.RecordID)
}
func (c *Client) DeleteSELEntry(recordID uint16, reservationID uint16) (response *DeleteSELEntryResponse, err error) {
request := &DeleteSELEntryRequest{
ReservationID: reservationID,
RecordID: recordID,
}
response = &DeleteSELEntryResponse{}
err = c.Exchange(request, response)
return
}