blob: 041f3d1d7acc85d598a7adba202d30218a777e13 (
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
|
package bsdp
import (
"fmt"
"github.com/insomniacslk/dhcp/dhcpv4"
"github.com/u-root/u-root/pkg/uio"
)
// Specific versions.
var (
Version1_0 = []byte{1, 0}
Version1_1 = []byte{1, 1}
)
// OptVersion represents a BSDP protocol version.
//
// Implements the BSDP option version. Can be one of 1.0 or 1.1
type OptVersion struct {
Version []byte
}
// ParseOptVersion constructs an OptVersion struct from a sequence of
// bytes and returns it, or an error.
func ParseOptVersion(data []byte) (*OptVersion, error) {
buf := uio.NewBigEndianBuffer(data)
return &OptVersion{buf.CopyN(2)}, buf.FinError()
}
// Code returns the option code.
func (o *OptVersion) Code() dhcpv4.OptionCode {
return OptionVersion
}
// ToBytes returns a serialized stream of bytes for this option.
func (o *OptVersion) ToBytes() []byte {
return o.Version
}
// String returns a human-readable string for this option.
func (o *OptVersion) String() string {
return fmt.Sprintf("BSDP Version -> %v.%v", o.Version[0], o.Version[1])
}
|