File: cmd_reserve_sel.go

package info (click to toggle)
golang-github-bougou-go-ipmi 0.7.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,880 kB
  • sloc: makefile: 38
file content (46 lines) | stat: -rw-r--r-- 952 bytes parent folder | download | duplicates (2)
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
package ipmi

import "context"

// 31.4 Reserve SEL Command
type ReserveSELRequest struct {
	// empty
}

type ReserveSELResponse struct {
	ReservationID uint16
}

func (req *ReserveSELRequest) Command() Command {
	return CommandReserveSEL
}

func (req *ReserveSELRequest) Pack() []byte {
	return nil
}

func (res *ReserveSELResponse) Unpack(msg []byte) error {
	if len(msg) < 2 {
		return ErrUnpackedDataTooShortWith(len(msg), 2)
	}
	res.ReservationID, _, _ = unpackUint16L(msg, 0)
	return nil
}

func (*ReserveSELResponse) CompletionCodes() map[uint8]string {
	// no command-specific cc
	return map[uint8]string{
		0x81: "cannot execute command, SEL erase in progress",
	}
}

func (res *ReserveSELResponse) Format() string {
	return ""
}

func (c *Client) ReserveSEL(ctx context.Context) (response *ReserveSELResponse, err error) {
	request := &ReserveSELRequest{}
	response = &ReserveSELResponse{}
	err = c.Exchange(ctx, request, response)
	return
}