blob: a922a2b02c49625666adf7d24e61e0cce902c579 (
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
49
|
package dhcpv4
import "fmt"
// This option implements the host name option
// https://tools.ietf.org/html/rfc2132
// OptHostName represents an option encapsulating the host name.
type OptHostName struct {
HostName string
}
// ParseOptHostName returns a new OptHostName from a byte stream, or error if
// any.
func ParseOptHostName(data []byte) (*OptHostName, error) {
if len(data) < 3 {
return nil, ErrShortByteStream
}
code := OptionCode(data[0])
if code != OptionHostName {
return nil, fmt.Errorf("expected code %v, got %v", OptionHostName, code)
}
length := int(data[1])
if len(data) < 2+length {
return nil, ErrShortByteStream
}
return &OptHostName{HostName: string(data[2 : 2+length])}, nil
}
// Code returns the option code.
func (o *OptHostName) Code() OptionCode {
return OptionHostName
}
// ToBytes returns a serialized stream of bytes for this option.
func (o *OptHostName) ToBytes() []byte {
return append([]byte{byte(o.Code()), byte(o.Length())}, []byte(o.HostName)...)
}
// String returns a human-readable string.
func (o *OptHostName) String() string {
return fmt.Sprintf("Host Name -> %v", o.HostName)
}
// Length returns the length of the data portion (excluding option code an byte
// length).
func (o *OptHostName) Length() int {
return len(o.HostName)
}
|