summaryrefslogtreecommitdiffhomepage
path: root/dhcpv6/option_prefixdelegation.go
diff options
context:
space:
mode:
Diffstat (limited to 'dhcpv6/option_prefixdelegation.go')
-rw-r--r--dhcpv6/option_prefixdelegation.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/dhcpv6/option_prefixdelegation.go b/dhcpv6/option_prefixdelegation.go
index 2a211c0..ecc7990 100644
--- a/dhcpv6/option_prefixdelegation.go
+++ b/dhcpv6/option_prefixdelegation.go
@@ -16,12 +16,12 @@ type OptIAForPrefixDelegation struct {
}
func (op *OptIAForPrefixDelegation) Code() OptionCode {
- return OPTION_IA_PD
+ return OptionIAPD
}
func (op *OptIAForPrefixDelegation) ToBytes() []byte {
buf := make([]byte, 16)
- binary.BigEndian.PutUint16(buf[0:2], uint16(OPTION_IA_PD))
+ binary.BigEndian.PutUint16(buf[0:2], uint16(OptionIAPD))
binary.BigEndian.PutUint16(buf[2:4], uint16(op.Length()))
copy(buf[4:8], op.iaId[:])
binary.BigEndian.PutUint32(buf[8:12], op.t1)