blob: da5e9c474b5f1fab7fd4d941fa65b5aa68ddbd2a (
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
|
package bsdp
import (
"encoding/binary"
"fmt"
"github.com/insomniacslk/dhcp/dhcpv4"
"github.com/u-root/u-root/pkg/uio"
)
// OptReplyPort represents a BSDP protocol version.
//
// Implements the BSDP option reply port. This is used when BSDP responses
// should be sent to a reply port other than the DHCP default. The macOS GUI
// "Startup Disk Select" sends this option since it's operating in an
// unprivileged context.
type OptReplyPort struct {
Port uint16
}
// ParseOptReplyPort constructs an OptReplyPort struct from a sequence of
// bytes and returns it, or an error.
func ParseOptReplyPort(data []byte) (*OptReplyPort, error) {
buf := uio.NewBigEndianBuffer(data)
return &OptReplyPort{buf.Read16()}, buf.FinError()
}
// Code returns the option code.
func (o *OptReplyPort) Code() dhcpv4.OptionCode {
return OptionReplyPort
}
// ToBytes returns a serialized stream of bytes for this option.
func (o *OptReplyPort) ToBytes() []byte {
serialized := make([]byte, 2)
binary.BigEndian.PutUint16(serialized, o.Port)
return append([]byte{byte(o.Code()), 2}, serialized...)
}
// String returns a human-readable string for this option.
func (o *OptReplyPort) String() string {
return fmt.Sprintf("BSDP Reply Port -> %v", o.Port)
}
// Length returns the length of the data portion of this option.
func (o *OptReplyPort) Length() int {
return 2
}
|