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_domainsearchlist_test.go | |
parent | 3478513076477d0f19eaeaf441f29949a9f6bc92 (diff) |
dhcpv6: move option code and length marshaling to Options.ToBytes.
Diffstat (limited to 'dhcpv6/option_domainsearchlist_test.go')
-rw-r--r-- | dhcpv6/option_domainsearchlist_test.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/dhcpv6/option_domainsearchlist_test.go b/dhcpv6/option_domainsearchlist_test.go index 0b4b6b0..67c053a 100644 --- a/dhcpv6/option_domainsearchlist_test.go +++ b/dhcpv6/option_domainsearchlist_test.go @@ -24,8 +24,6 @@ func TestParseOptDomainSearchList(t *testing.T) { func TestOptDomainSearchListToBytes(t *testing.T) { expected := []byte{ - 0, 24, // OptionDomainSearchList - 0, 33, // length 7, 'e', 'x', 'a', 'm', 'p', 'l', 'e', 3, 'c', 'o', 'm', 0, 6, 's', 'u', 'b', 'n', 'e', 't', 7, 'e', 'x', 'a', 'm', 'p', 'l', 'e', 3, 'o', 'r', 'g', 0, } |