summaryrefslogtreecommitdiffhomepage
path: root/dhcpv6/option_remoteid.go
diff options
context:
space:
mode:
authorinsomniac <insomniacslk@users.noreply.github.com>2018-07-31 17:12:40 +0100
committerGitHub <noreply@github.com>2018-07-31 17:12:40 +0100
commitbcf643be1286495de75817fd1edf731ddbd2195a (patch)
tree945d12ed3d8a11ebc55dd2f8d6ee1304ecd2b20f /dhcpv6/option_remoteid.go
parentc6894ea160d82b4a326ebab94faaebd090192a7b (diff)
parent7319b8f8a1a601b5e69c5bcaa33914c0f85b92e6 (diff)
DHCPv6: Rename Option constants to CamelCase (#106)
Diffstat (limited to 'dhcpv6/option_remoteid.go')
-rw-r--r--dhcpv6/option_remoteid.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/dhcpv6/option_remoteid.go b/dhcpv6/option_remoteid.go
index 210363d..9d249a7 100644
--- a/dhcpv6/option_remoteid.go
+++ b/dhcpv6/option_remoteid.go
@@ -14,12 +14,12 @@ type OptRemoteId struct {
}
func (op *OptRemoteId) Code() OptionCode {
- return OPTION_REMOTE_ID
+ return OptionRemoteID
}
func (op *OptRemoteId) ToBytes() []byte {
buf := make([]byte, 8)
- binary.BigEndian.PutUint16(buf[0:2], uint16(OPTION_REMOTE_ID))
+ binary.BigEndian.PutUint16(buf[0:2], uint16(OptionRemoteID))
binary.BigEndian.PutUint16(buf[2:4], uint16(op.Length()))
binary.BigEndian.PutUint32(buf[4:8], uint32(op.enterpriseNumber))
buf = append(buf, op.remoteId...)