blob: 1441428595ba00582c8060028ec6ecb81813db45 (
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
import (
"fmt"
"time"
"github.com/u-root/uio/uio"
)
// OptElapsedTime returns an Elapsed Time option as defined by RFC 3315 Section
// 22.9.
func OptElapsedTime(dur time.Duration) Option {
return &optElapsedTime{ElapsedTime: dur}
}
type optElapsedTime struct {
ElapsedTime time.Duration
}
func (*optElapsedTime) Code() OptionCode {
return OptionElapsedTime
}
// ToBytes marshals this option to bytes.
func (op *optElapsedTime) ToBytes() []byte {
buf := uio.NewBigEndianBuffer(nil)
buf.Write16(uint16(op.ElapsedTime.Round(10*time.Millisecond) / (10 * time.Millisecond)))
return buf.Data()
}
func (op *optElapsedTime) String() string {
return fmt.Sprintf("%s: %s", op.Code(), op.ElapsedTime)
}
// FromBytes builds an optElapsedTime structure from a sequence of bytes.
// The input data does not include option code and length bytes.
func (op *optElapsedTime) FromBytes(data []byte) error {
buf := uio.NewBigEndianBuffer(data)
op.ElapsedTime = time.Duration(buf.Read16()) * 10 * time.Millisecond
return buf.FinError()
}
|