blob: 48d97161a6042265bdf390b4b5b14de485e1995d (
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
|
package dhcpv6
// This module defines the optRelayMsg structure.
// https://www.ietf.org/rfc/rfc3315.txt
import (
"fmt"
)
// OptRelayMessage embeds a message in a relay option.
func OptRelayMessage(msg DHCPv6) Option {
return &optRelayMsg{Msg: msg}
}
type optRelayMsg struct {
Msg DHCPv6
}
func (op *optRelayMsg) Code() OptionCode {
return OptionRelayMsg
}
func (op *optRelayMsg) ToBytes() []byte {
return op.Msg.ToBytes()
}
func (op *optRelayMsg) String() string {
return fmt.Sprintf("RelayMsg: %v", op.Msg)
}
// build an optRelayMsg structure from a sequence of bytes.
// The input data does not include option code and length bytes.
func parseOptRelayMsg(data []byte) (*optRelayMsg, error) {
var err error
var opt optRelayMsg
opt.Msg, err = FromBytes(data)
if err != nil {
return nil, err
}
return &opt, nil
}
|