File: cmd_reserve_sdr_repo.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 (44 lines) | stat: -rw-r--r-- 934 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
package ipmi

import "context"

// 33.11 Reserve SDR Repository Command
type ReserveSDRRepoRequest struct {
	// empty
}

type ReserveSDRRepoResponse struct {
	ReservationID uint16
}

func (req *ReserveSDRRepoRequest) Command() Command {
	return CommandReserveSDRRepo
}

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

func (res *ReserveSDRRepoResponse) Unpack(msg []byte) error {
	if len(msg) < 2 {
		return ErrUnpackedDataTooShortWith(len(msg), 2)
	}

	res.ReservationID, _, _ = unpackUint16L(msg, 0)
	return nil
}

func (r *ReserveSDRRepoResponse) CompletionCodes() map[uint8]string {
	return map[uint8]string{}
}

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

func (c *Client) ReserveSDRRepo(ctx context.Context) (response *ReserveSDRRepoResponse, err error) {
	request := &ReserveSDRRepoRequest{}
	response = &ReserveSDRRepoResponse{}
	err = c.Exchange(ctx, request, response)
	return
}