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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
package dhcpv4
import (
"fmt"
"net"
"github.com/u-root/u-root/pkg/uio"
)
// OptBroadcastAddress implements the broadcast address option described in RFC
// 2132, Section 5.3.
type OptBroadcastAddress struct {
BroadcastAddress net.IP
}
// ParseOptBroadcastAddress returns a new OptBroadcastAddress from a byte
// stream, or error if any.
func ParseOptBroadcastAddress(data []byte) (*OptBroadcastAddress, error) {
buf := uio.NewBigEndianBuffer(data)
return &OptBroadcastAddress{BroadcastAddress: net.IP(buf.CopyN(net.IPv4len))}, buf.FinError()
}
// Code returns the option code.
func (o *OptBroadcastAddress) Code() OptionCode {
return OptionBroadcastAddress
}
// ToBytes returns a serialized stream of bytes for this option.
func (o *OptBroadcastAddress) ToBytes() []byte {
return []byte(o.BroadcastAddress.To4())
}
// String returns a human-readable string.
func (o *OptBroadcastAddress) String() string {
return fmt.Sprintf("Broadcast Address -> %v", o.BroadcastAddress.String())
}
// OptRequestedIPAddress implements the requested IP address option described
// by RFC 2132, Section 9.1.
type OptRequestedIPAddress struct {
RequestedAddr net.IP
}
// ParseOptRequestedIPAddress returns a new OptRequestedIPAddress from a byte
// stream, or error if any.
func ParseOptRequestedIPAddress(data []byte) (*OptRequestedIPAddress, error) {
buf := uio.NewBigEndianBuffer(data)
return &OptRequestedIPAddress{RequestedAddr: net.IP(buf.CopyN(net.IPv4len))}, buf.FinError()
}
// Code returns the option code.
func (o *OptRequestedIPAddress) Code() OptionCode {
return OptionRequestedIPAddress
}
// ToBytes returns a serialized stream of bytes for this option.
func (o *OptRequestedIPAddress) ToBytes() []byte {
return o.RequestedAddr.To4()
}
// String returns a human-readable string.
func (o *OptRequestedIPAddress) String() string {
return fmt.Sprintf("Requested IP Address -> %v", o.RequestedAddr.String())
}
// OptServerIdentifier implements the server identifier option described by RFC
// 2132, Section 9.7.
type OptServerIdentifier struct {
ServerID net.IP
}
// ParseOptServerIdentifier returns a new OptServerIdentifier from a byte
// stream, or error if any.
func ParseOptServerIdentifier(data []byte) (*OptServerIdentifier, error) {
buf := uio.NewBigEndianBuffer(data)
return &OptServerIdentifier{ServerID: net.IP(buf.CopyN(net.IPv4len))}, buf.FinError()
}
// Code returns the option code.
func (o *OptServerIdentifier) Code() OptionCode {
return OptionServerIdentifier
}
// ToBytes returns a serialized stream of bytes for this option.
func (o *OptServerIdentifier) ToBytes() []byte {
return o.ServerID.To4()
}
// String returns a human-readable string.
func (o *OptServerIdentifier) String() string {
return fmt.Sprintf("Server Identifier -> %v", o.ServerID.String())
}
|