blob: cc56ee02d6e2b8f1d10737105a8cbed85c0fb119 (
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/dnscompress"
)
// OptDomainSearchList list implements a DOMAIN_SEARCH_LIST option
type OptDomainSearchList struct {
DomainSearchList []string
}
func (op *OptDomainSearchList) Code() OptionCode {
return DOMAIN_SEARCH_LIST
}
func (op *OptDomainSearchList) ToBytes() []byte {
buf := make([]byte, 4)
binary.BigEndian.PutUint16(buf[0:2], uint16(DOMAIN_SEARCH_LIST))
binary.BigEndian.PutUint16(buf[2:4], uint16(op.Length()))
buf = append(buf, dnscompress.LabelsToBytes(op.DomainSearchList)...)
return buf
}
func (op *OptDomainSearchList) Length() int {
var length int
for _, label := range op.DomainSearchList {
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)
}
// build 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{}
var err error
opt.DomainSearchList, err = dnscompress.LabelsFromBytes(data)
if err != nil {
return nil, err
}
return &opt, nil
}
|