summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/header/BUILD
diff options
context:
space:
mode:
authorGhanan Gowripalan <ghanan@google.com>2019-12-13 16:26:06 -0800
committergVisor bot <gvisor-bot@google.com>2019-12-13 16:41:41 -0800
commitad80dcf47077a1938631fe36f6b406256f3f3f4f (patch)
treeaec73e71c96cda399d7895841ec0aef7a63b1388 /pkg/tcpip/header/BUILD
parentbe2754a4b99cc92f13f479f74a5da8b0e6cb5839 (diff)
Properly generate the EUI64 interface identifier from an Ethernet address
Fixed a bug where the interface identifier was not properly generated from an Ethernet address. Tests: Unittests to make sure the functions generating the EUI64 interface identifier are correct. PiperOrigin-RevId: 285494562
Diffstat (limited to 'pkg/tcpip/header/BUILD')
-rw-r--r--pkg/tcpip/header/BUILD3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/tcpip/header/BUILD b/pkg/tcpip/header/BUILD
index 8392cb9e5..f1d837196 100644
--- a/pkg/tcpip/header/BUILD
+++ b/pkg/tcpip/header/BUILD
@@ -38,12 +38,15 @@ go_test(
size = "small",
srcs = [
"checksum_test.go",
+ "ipv6_test.go",
"ipversion_test.go",
"tcp_test.go",
],
deps = [
":header",
+ "//pkg/tcpip",
"//pkg/tcpip/buffer",
+ "@com_github_google_go-cmp//cmp:go_default_library",
],
)