diff options
author | Andrea Barberio <insomniac@slackware.it> | 2019-04-23 20:23:45 +0100 |
---|---|---|
committer | insomniac <insomniacslk@users.noreply.github.com> | 2019-04-23 21:18:28 +0100 |
commit | ebf43962e121b9c5c982d6a647a29fa4ae9b6a14 (patch) | |
tree | f0b5c068389f88a5c27acf8fa28f594f81a74f5f /dhcpv6/async/client_test.go | |
parent | b071bdc86a58037f6c745647c97fca202f3caef9 (diff) |
Revert "[dhcpv6] Solicit messages derive default IAID from MAC address"
This reverts commit b071bdc86a58037f6c745647c97fca202f3caef9.
Signed-off-by: Andrea Barberio <insomniac@slackware.it>
Diffstat (limited to 'dhcpv6/async/client_test.go')
-rw-r--r-- | dhcpv6/async/client_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dhcpv6/async/client_test.go b/dhcpv6/async/client_test.go index a3b076c..9b58112 100644 --- a/dhcpv6/async/client_test.go +++ b/dhcpv6/async/client_test.go @@ -26,7 +26,7 @@ func solicit(input string) (*dhcpv6.Message, error) { Time: dhcpv6.GetTime(), LinkLayerAddr: mac, } - return dhcpv6.NewSolicitWithCID(duid, mac, dhcpv6.WithIAID([4]byte{1, 2, 3, 4})) + return dhcpv6.NewSolicitWithCID(duid) } // server creates a server which responds with a predefined response |