summaryrefslogtreecommitdiffhomepage
path: root/dhcpv6/option_statuscode.go
diff options
context:
space:
mode:
Diffstat (limited to 'dhcpv6/option_statuscode.go')
-rw-r--r--dhcpv6/option_statuscode.go16
1 files changed, 12 insertions, 4 deletions
diff --git a/dhcpv6/option_statuscode.go b/dhcpv6/option_statuscode.go
index 017a26f..7740f4d 100644
--- a/dhcpv6/option_statuscode.go
+++ b/dhcpv6/option_statuscode.go
@@ -8,15 +8,18 @@ import (
"fmt"
)
+// OptStatusCode represents a DHCPv6 Status Code option
type OptStatusCode struct {
statusCode uint16
statusMessage []byte
}
+// Code returns the option code
func (op *OptStatusCode) Code() OptionCode {
return OPTION_STATUS_CODE
}
+// ToBytes serializes the option and returns it as a sequence of bytes
func (op *OptStatusCode) ToBytes() []byte {
buf := make([]byte, 6)
binary.BigEndian.PutUint16(buf[0:2], uint16(OPTION_STATUS_CODE))
@@ -26,22 +29,27 @@ func (op *OptStatusCode) ToBytes() []byte {
return buf
}
+// StatusCode returns the status code
func (op *OptStatusCode) StatusCode() uint16 {
return op.statusCode
}
+// SetStatusCode sets the status code
func (op *OptStatusCode) SetStatusCode(code uint16) {
op.statusCode = code
}
-func (op *OptStatusCode) StatusMessage() uint16 {
- return op.statusCode
+// StatusMessage returns the status message
+func (op *OptStatusCode) StatusMessage() []byte {
+ return op.statusMessage
}
+// SetStatusMessage sets the status message
func (op *OptStatusCode) SetStatusMessage(message []byte) {
op.statusMessage = message
}
+// Length returns the option length
func (op *OptStatusCode) Length() int {
return 2 + len(op.statusMessage)
}
@@ -50,8 +58,8 @@ func (op *OptStatusCode) String() string {
return fmt.Sprintf("OptStatusCode{code=%v, message=%v}", op.statusCode, string(op.statusMessage))
}
-// build an OptStatusCode structure from a sequence of bytes.
-// The input data does not include option code and length bytes.
+// ParseOptStatusCode builds an OptStatusCode structure from a sequence of
+// bytes. The input data does not include option code and length bytes.
func ParseOptStatusCode(data []byte) (*OptStatusCode, error) {
if len(data) < 2 {
return nil, fmt.Errorf("Invalid OptStatusCode data: length is shorter than 2")