diff options
author | Christopher Koch <c@chrisko.ch> | 2019-01-20 04:23:39 +0000 |
---|---|---|
committer | insomniac <insomniacslk@users.noreply.github.com> | 2019-01-26 23:34:26 +0000 |
commit | c09728dd0f8ccf56e74efe7df7328191a347e821 (patch) | |
tree | 0342d2dc8ee89a82ddcf86007806bd558a90acbd /dhcpv6/dhcpv6relay_test.go | |
parent | 5604533269d24e72911e36f94d335337849decae (diff) |
dhcpv6: introduce TransactionID type
Diffstat (limited to 'dhcpv6/dhcpv6relay_test.go')
-rw-r--r-- | dhcpv6/dhcpv6relay_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dhcpv6/dhcpv6relay_test.go b/dhcpv6/dhcpv6relay_test.go index 0710c5d..d2446ec 100644 --- a/dhcpv6/dhcpv6relay_test.go +++ b/dhcpv6/dhcpv6relay_test.go @@ -92,7 +92,7 @@ func TestDHCPv6RelayToBytes(t *testing.T) { opt := OptRelayMsg{ relayMessage: &DHCPv6Message{ messageType: MessageTypeSolicit, - transactionID: 0xaabbcc, + transactionID: TransactionID{0xaa, 0xbb, 0xcc}, options: []Option{ &OptElapsedTime{ ElapsedTime: 0, |