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
|
package dhcpv6
import (
"fmt"
"github.com/insomniacslk/dhcp/dhcpv4"
)
// OptDHCPv4Msg represents a OptionDHCPv4Msg option
//
// This module defines the OptDHCPv4Msg structure.
// https://www.ietf.org/rfc/rfc7341.txt
type OptDHCPv4Msg struct {
Msg *dhcpv4.DHCPv4
}
// Code returns the option code
func (op *OptDHCPv4Msg) Code() OptionCode {
return OptionDHCPv4Msg
}
// ToBytes returns the option serialized to bytes.
func (op *OptDHCPv4Msg) ToBytes() []byte {
return op.Msg.ToBytes()
}
func (op *OptDHCPv4Msg) String() string {
return fmt.Sprintf("OptDHCPv4Msg{%v}", op.Msg)
}
// ParseOptDHCPv4Msg builds an OptDHCPv4Msg structure
// from a sequence of bytes. The input data does not include option code and length
// bytes.
func ParseOptDHCPv4Msg(data []byte) (*OptDHCPv4Msg, error) {
var opt OptDHCPv4Msg
var err error
opt.Msg, err = dhcpv4.FromBytes(data)
return &opt, err
}
|