File: cmd_reset_watchdog_timer.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 (41 lines) | stat: -rw-r--r-- 918 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
package ipmi

import "context"

// 27.5 Reset Watchdog Timer Command
type ResetWatchdogTimerRequest struct {
	// empty
}

type ResetWatchdogTimerResponse struct {
}

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

func (req *ResetWatchdogTimerRequest) Command() Command {
	return CommandResetWatchdogTimer
}

func (res *ResetWatchdogTimerResponse) Unpack(msg []byte) error {
	return nil
}

func (res *ResetWatchdogTimerResponse) CompletionCodes() map[uint8]string {
	// no command-specific cc
	return map[uint8]string{
		0x80: "Attempt to start un-initialized watchdog",
	}
}

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

func (c *Client) ResetWatchdogTimer(ctx context.Context) (response *ResetWatchdogTimerResponse, err error) {
	request := &ResetWatchdogTimerRequest{}
	response = &ResetWatchdogTimerResponse{}
	err = c.Exchange(ctx, request, response)
	return
}