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
|
package ipmi
import "context"
// 22.8 Read Event Message Buffer Command
type ReadEventMessageBufferRequest struct {
// empty
}
type ReadEventMessageBufferResponse struct {
// 16 bytes of data in SEL Record format
MessageData [16]byte
}
func (req ReadEventMessageBufferRequest) Command() Command {
return CommandReadEventMessageBuffer
}
func (req *ReadEventMessageBufferRequest) Pack() []byte {
return []byte{}
}
func (res *ReadEventMessageBufferResponse) Unpack(msg []byte) error {
if len(msg) < 16 {
return ErrUnpackedDataTooShortWith(len(msg), 16)
}
b, _, _ := unpackBytes(msg, 0, 16)
res.MessageData = array16(b)
return nil
}
func (*ReadEventMessageBufferResponse) CompletionCodes() map[uint8]string {
return map[uint8]string{
0x80: " data not available (queue / buffer empty)",
}
}
func (res *ReadEventMessageBufferResponse) Format() string {
return ""
}
func (c *Client) ReadEventMessageBuffer(ctx context.Context) (response *ReadEventMessageBufferResponse, err error) {
request := &ReadEventMessageBufferRequest{}
response = &ReadEventMessageBufferResponse{}
err = c.Exchange(ctx, request, response)
return
}
|