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
}
|