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
|
package dhcpv4
import (
"encoding/binary"
"fmt"
)
// This option implements the Maximum DHCP Message size option
// https://tools.ietf.org/html/rfc2132
// OptMaximumDHCPMessageSize represents the Maximum DHCP Message size option.
type OptMaximumDHCPMessageSize struct {
Size uint16
}
// ParseOptMaximumDHCPMessageSize constructs an OptMaximumDHCPMessageSize struct from a sequence of
// bytes and returns it, or an error.
func ParseOptMaximumDHCPMessageSize(data []byte) (*OptMaximumDHCPMessageSize, error) {
// Should at least have code, length, and message size.
if len(data) < 4 {
return nil, ErrShortByteStream
}
code := OptionCode(data[0])
if code != OptionMaximumDHCPMessageSize {
return nil, fmt.Errorf("expected option %v, got %v instead", OptionMaximumDHCPMessageSize, code)
}
length := int(data[1])
if length != 2 {
return nil, fmt.Errorf("expected length 2, got %v instead", length)
}
msgSize := binary.BigEndian.Uint16(data[2:4])
return &OptMaximumDHCPMessageSize{Size: msgSize}, nil
}
// Code returns the option code.
func (o *OptMaximumDHCPMessageSize) Code() OptionCode {
return OptionMaximumDHCPMessageSize
}
// ToBytes returns a serialized stream of bytes for this option.
func (o *OptMaximumDHCPMessageSize) ToBytes() []byte {
serializedSize := make([]byte, 2)
binary.BigEndian.PutUint16(serializedSize, o.Size)
serializedOpt := []byte{byte(o.Code()), byte(o.Length())}
return append(serializedOpt, serializedSize...)
}
// String returns a human-readable string for this option.
func (o *OptMaximumDHCPMessageSize) String() string {
return fmt.Sprintf("Maximum DHCP Message Size -> %v", o.Size)
}
// Length returns the length of the data portion (excluding option code and byte
// for length, if any).
func (o *OptMaximumDHCPMessageSize) Length() int {
return 2
}
|