blob: 017a26f62234e10a9dbc9c75669e3f24a192a9cb (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
package dhcpv6
// This module defines the OptStatusCode structure.
// https://www.ietf.org/rfc/rfc3315.txt
import (
"encoding/binary"
"fmt"
)
type OptStatusCode struct {
statusCode uint16
statusMessage []byte
}
func (op *OptStatusCode) Code() OptionCode {
return OPTION_STATUS_CODE
}
func (op *OptStatusCode) ToBytes() []byte {
buf := make([]byte, 6)
binary.BigEndian.PutUint16(buf[0:2], uint16(OPTION_STATUS_CODE))
binary.BigEndian.PutUint16(buf[2:4], uint16(op.Length()))
binary.BigEndian.PutUint16(buf[4:6], op.statusCode)
buf = append(buf, op.statusMessage...)
return buf
}
func (op *OptStatusCode) StatusCode() uint16 {
return op.statusCode
}
func (op *OptStatusCode) SetStatusCode(code uint16) {
op.statusCode = code
}
func (op *OptStatusCode) StatusMessage() uint16 {
return op.statusCode
}
func (op *OptStatusCode) SetStatusMessage(message []byte) {
op.statusMessage = message
}
func (op *OptStatusCode) Length() int {
return 2 + len(op.statusMessage)
}
func (op *OptStatusCode) String() string {
return fmt.Sprintf("OptStatusCode{code=%v, message=%v}", op.statusCode, string(op.statusMessage))
}
// build 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) {
if len(data) < 2 {
return nil, fmt.Errorf("Invalid OptStatusCode data: length is shorter than 2")
}
opt := OptStatusCode{}
opt.statusCode = binary.BigEndian.Uint16(data[0:2])
opt.statusMessage = append(opt.statusMessage, data[2:]...)
return &opt, nil
}
|