summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/network/ipv6/BUILD
diff options
context:
space:
mode:
authorGhanan Gowripalan <ghanan@google.com>2021-02-09 11:48:08 -0800
committergVisor bot <gvisor-bot@google.com>2021-02-09 11:52:31 -0800
commit18e993eb4f2e6db829acfb5e8725f7d12f73ab67 (patch)
tree2ac310ae5790668143cc3ee9f7ffb086d6431642 /pkg/tcpip/network/ipv6/BUILD
parentd0c0549e607699e0186065ad9186431f12260487 (diff)
Move network internal code to internal package
Utilities written to be common across IPv4/IPv6 are not planned to be available for public use. https://golang.org/doc/go1.4#internalpackages PiperOrigin-RevId: 356554862
Diffstat (limited to 'pkg/tcpip/network/ipv6/BUILD')
-rw-r--r--pkg/tcpip/network/ipv6/BUILD5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkg/tcpip/network/ipv6/BUILD b/pkg/tcpip/network/ipv6/BUILD
index d75b0b8de..bb9a02ed0 100644
--- a/pkg/tcpip/network/ipv6/BUILD
+++ b/pkg/tcpip/network/ipv6/BUILD
@@ -19,10 +19,9 @@ go_library(
"//pkg/tcpip/buffer",
"//pkg/tcpip/header",
"//pkg/tcpip/header/parse",
- "//pkg/tcpip/network/fragmentation",
"//pkg/tcpip/network/hash",
+ "//pkg/tcpip/network/internal/fragmentation",
"//pkg/tcpip/network/internal/ip",
- "//pkg/tcpip/network/ip",
"//pkg/tcpip/stack",
],
)
@@ -44,7 +43,7 @@ go_test(
"//pkg/tcpip/header",
"//pkg/tcpip/link/channel",
"//pkg/tcpip/link/sniffer",
- "//pkg/tcpip/network/testutil",
+ "//pkg/tcpip/network/internal/testutil",
"//pkg/tcpip/stack",
"//pkg/tcpip/transport/icmp",
"//pkg/tcpip/transport/tcp",