File: option_interfaceid.go

package info (click to toggle)
golang-github-insomniacslk-dhcp 0.0~git20250417.5f8cf70-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid
  • size: 1,096 kB
  • sloc: makefile: 3
file content (34 lines) | stat: -rw-r--r-- 721 bytes parent folder | download
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
package dhcpv6

import (
	"fmt"
)

// OptInterfaceID returns an interface id option as defined by RFC 3315,
// Section 22.18.
func OptInterfaceID(id []byte) Option {
	return &optInterfaceID{ID: id}
}

type optInterfaceID struct {
	ID []byte
}

func (*optInterfaceID) Code() OptionCode {
	return OptionInterfaceID
}

func (op *optInterfaceID) ToBytes() []byte {
	return op.ID
}

func (op *optInterfaceID) String() string {
	return fmt.Sprintf("%s: %v", op.Code(), op.ID)
}

// FromBytes builds an optInterfaceID structure from a sequence of bytes. The
// input data does not include option code and length bytes.
func (op *optInterfaceID) FromBytes(data []byte) error {
	op.ID = append([]byte(nil), data...)
	return nil
}