summaryrefslogtreecommitdiffhomepage
path: root/dhcpv6/option_bootfileurl.go
blob: d37a18620b521c474ca4a9bb10ae69a466099d7c (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
package dhcpv6

import (
	"fmt"
)

// OptBootFileURL implements the OptionBootfileURL option
//
// This module defines the OptBootFileURL structure.
// https://www.ietf.org/rfc/rfc5970.txt
type OptBootFileURL string

var _ Option = OptBootFileURL("")

// Code returns the option code
func (op OptBootFileURL) Code() OptionCode {
	return OptionBootfileURL
}

// ToBytes serializes the option and returns it as a sequence of bytes
func (op OptBootFileURL) ToBytes() []byte {
	return []byte(op)
}

func (op OptBootFileURL) String() string {
	return fmt.Sprintf("OptBootFileURL(%s)", string(op))
}

// ParseOptBootFileURL builds 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) {
	return OptBootFileURL(string(data)), nil
}