blob: 581ddd8c9d5e9f540baad0131fc067c992044f08 (
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
|
package dhcpv6
// This module defines the OptBootFileURL structure.
// https://www.ietf.org/rfc/rfc5970.txt
import (
"encoding/binary"
"fmt"
)
type OptBootFileURL struct {
bootFileUrl []byte
}
func (op *OptBootFileURL) Code() OptionCode {
return OPT_BOOTFILE_URL
}
func (op *OptBootFileURL) ToBytes() []byte {
buf := make([]byte, 4)
binary.BigEndian.PutUint16(buf[0:2], uint16(OPT_BOOTFILE_URL))
binary.BigEndian.PutUint16(buf[2:4], uint16(len(op.bootFileUrl)))
buf = append(buf, op.bootFileUrl...)
return buf
}
func (op *OptBootFileURL) BootFileURL() []byte {
return op.bootFileUrl
}
func (op *OptBootFileURL) SetBootFileURL(bootFileUrl []byte) {
op.bootFileUrl = bootFileUrl
}
func (op *OptBootFileURL) Length() int {
return len(op.bootFileUrl)
}
func (op *OptBootFileURL) String() string {
return fmt.Sprintf("OptBootFileURL{BootFileUrl=%v}", op.bootFileUrl)
}
// build an OptBootFileURL structure from a sequence of bytes.
// The input data does not include option code and length bytes.
func ParseOptBootFileURL(data []byte) (*OptBootFileURL, error) {
opt := OptBootFileURL{}
opt.bootFileUrl = append([]byte(nil), data...)
return &opt, nil
}
|