blob: c7bbf83c63d90f2e786f070b8bee68e4fde99906 (
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
|
package dhcpv6
import (
"fmt"
"net"
"github.com/u-root/uio/uio"
)
// OptDNS returns a DNS Recursive Name Server option as defined by RFC 3646.
func OptDNS(ip ...net.IP) Option {
return &optDNS{NameServers: ip}
}
type optDNS struct {
NameServers []net.IP
}
// Code returns the option code
func (op *optDNS) Code() OptionCode {
return OptionDNSRecursiveNameServer
}
// ToBytes returns the option serialized to bytes.
func (op *optDNS) ToBytes() []byte {
buf := uio.NewBigEndianBuffer(nil)
for _, ns := range op.NameServers {
buf.WriteBytes(ns.To16())
}
return buf.Data()
}
func (op *optDNS) String() string {
return fmt.Sprintf("DNS: %v", op.NameServers)
}
// parseOptDNS builds an optDNS structure
// from a sequence of bytes. The input data does not include option code and length
// bytes.
func parseOptDNS(data []byte) (*optDNS, error) {
var opt optDNS
buf := uio.NewBigEndianBuffer(data)
for buf.Has(net.IPv6len) {
opt.NameServers = append(opt.NameServers, buf.CopyN(net.IPv6len))
}
return &opt, buf.FinError()
}
|