blob: fd51948f39add7f786852f62bc38e30e9bfde302 (
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
|
// This module defines the optRelayPort structure.
// https://www.ietf.org/rfc/rfc8357.txt
package dhcpv6
import (
"fmt"
"github.com/u-root/uio/uio"
)
// OptRelayPort specifies an UDP port to use for the downstream relay
func OptRelayPort(port uint16) Option {
return &optRelayPort{DownstreamSourcePort: port}
}
type optRelayPort struct {
DownstreamSourcePort uint16
}
func (op *optRelayPort) Code() OptionCode {
return OptionRelayPort
}
func (op *optRelayPort) ToBytes() []byte {
buf := uio.NewBigEndianBuffer(nil)
buf.Write16(op.DownstreamSourcePort)
return buf.Data()
}
func (op *optRelayPort) String() string {
return fmt.Sprintf("RelayPort: %d", op.DownstreamSourcePort)
}
// build an optRelayPort structure from a sequence of bytes.
// The input data does not include option code and length bytes.
func parseOptRelayPort(data []byte) (*optRelayPort, error) {
var opt optRelayPort
buf := uio.NewBigEndianBuffer(data)
opt.DownstreamSourcePort = buf.Read16()
return &opt, buf.FinError()
}
|