blob: b6b5a146ec27ad5181e9f22b732406b5ca6330fe (
plain)
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 dhcpv6
import (
"fmt"
"github.com/insomniacslk/dhcp/iana"
"github.com/u-root/uio/uio"
)
// OptStatusCode represents a DHCPv6 Status Code option
//
// This module defines the OptStatusCode structure.
// https://www.ietf.org/rfc/rfc3315.txt
type OptStatusCode struct {
StatusCode iana.StatusCode
StatusMessage string
}
// Code returns the option code.
func (op *OptStatusCode) Code() OptionCode {
return OptionStatusCode
}
// ToBytes serializes the option and returns it as a sequence of bytes.
func (op *OptStatusCode) ToBytes() []byte {
buf := uio.NewBigEndianBuffer(nil)
buf.Write16(uint16(op.StatusCode))
buf.WriteBytes([]byte(op.StatusMessage))
return buf.Data()
}
// String returns a human-readable option.
func (op *OptStatusCode) String() string {
return fmt.Sprintf("StatusCode: Code: %s (%d); Message: %s",
op.StatusCode, op.StatusCode, op.StatusMessage)
}
// ParseOptStatusCode builds an OptStatusCode structure from a sequence of
// bytes. The input data does not include option code and length bytes.
func ParseOptStatusCode(data []byte) (*OptStatusCode, error) {
var opt OptStatusCode
buf := uio.NewBigEndianBuffer(data)
opt.StatusCode = iana.StatusCode(buf.Read16())
opt.StatusMessage = string(buf.ReadAll())
return &opt, buf.FinError()
}
|