blob: b7a356e7c2ee86de3be003d3195fe9453f5ab905 (
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
|
package dhcpv6
// This module defines the OptDomainSearchList structure.
// https://www.ietf.org/rfc/rfc3646.txt
import (
"encoding/binary"
"fmt"
"github.com/insomniacslk/dhcp/rfc1035label"
)
// OptDomainSearchList list implements a OptionDomainSearchList option
type OptDomainSearchList struct {
DomainSearchList *rfc1035label.Labels
}
func (op *OptDomainSearchList) Code() OptionCode {
return OptionDomainSearchList
}
func (op *OptDomainSearchList) ToBytes() []byte {
buf := make([]byte, 4)
binary.BigEndian.PutUint16(buf[0:2], uint16(OptionDomainSearchList))
binary.BigEndian.PutUint16(buf[2:4], uint16(op.Length()))
buf = append(buf, op.DomainSearchList.ToBytes()...)
return buf
}
func (op *OptDomainSearchList) Length() int {
var length int
for _, label := range op.DomainSearchList.Labels {
length += len(label) + 2 // add the first and the last length bytes
}
return length
}
func (op *OptDomainSearchList) String() string {
return fmt.Sprintf("OptDomainSearchList{searchlist=%v}", op.DomainSearchList.Labels)
}
// ParseOptDomainSearchList builds an OptDomainSearchList structure from a sequence
// of bytes. The input data does not include option code and length bytes.
func ParseOptDomainSearchList(data []byte) (*OptDomainSearchList, error) {
opt := OptDomainSearchList{}
labels, err := rfc1035label.FromBytes(data)
if err != nil {
return nil, err
}
opt.DomainSearchList = labels
return &opt, nil
}
|