diff options
author | Christopher Koch <c@chrisko.ch> | 2019-01-20 20:13:51 +0000 |
---|---|---|
committer | insomniac <insomniacslk@users.noreply.github.com> | 2019-01-26 23:34:26 +0000 |
commit | da69dad309583925ff4f8d0454bd0fb5bb6a1402 (patch) | |
tree | 59ab134698084993a6254afe70ff8035b7b4f655 /dhcpv6/option_vendor_opts_test.go | |
parent | 3478513076477d0f19eaeaf441f29949a9f6bc92 (diff) |
dhcpv6: move option code and length marshaling to Options.ToBytes.
Diffstat (limited to 'dhcpv6/option_vendor_opts_test.go')
-rw-r--r-- | dhcpv6/option_vendor_opts_test.go | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/dhcpv6/option_vendor_opts_test.go b/dhcpv6/option_vendor_opts_test.go index cce4650..043995d 100644 --- a/dhcpv6/option_vendor_opts_test.go +++ b/dhcpv6/option_vendor_opts_test.go @@ -33,13 +33,11 @@ func TestOptVendorOptsToBytes(t *testing.T) { var opts []Option opts = append(opts, &OptionGeneric{OptionCode: 1, OptionData: optData}) - var expected []byte - expected = append(expected, []byte{0, 17, // VendorOption Code 17 - 0, byte(len(optData) + 8), // Length of optionData + 4 (code & length of sub-option) + 4 for EnterpriseNumber Length + expected := append([]byte{ 0, 0, 0, 0, // EnterpriseNumber 0, 1, // Sub-Option code from vendor - 0, byte(len(optData))}...) // Length of optionData only - expected = append(expected, optData...) + 0, byte(len(optData)), // Length of optionData only + }, optData...) opt := OptVendorOpts{ EnterpriseNumber: 0000, |