diff options
author | Ghanan Gowripalan <ghanan@google.com> | 2019-09-09 12:04:33 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-09-09 12:06:06 -0700 |
commit | a8943325db43d04be8a10157f6d3f3180e5170a5 (patch) | |
tree | 45b05722e0b29b497eb181e813272a5abafda7ab /pkg/tcpip/network/ipv6/BUILD | |
parent | fe1f5210774d015d653df164d6f676658863780c (diff) |
Join IPv6 all-nodes and solicited-node multicast addresses where appropriate.
The IPv6 all-nodes multicast address will be joined on NIC enable, and the
appropriate IPv6 solicited-node multicast address will be joined when IPv6
addresses are added.
Tests: Test receiving packets destined to the IPv6 link-local all-nodes
multicast address and the IPv6 solicted node address of an added IPv6 address.
PiperOrigin-RevId: 268047073
Diffstat (limited to 'pkg/tcpip/network/ipv6/BUILD')
-rw-r--r-- | pkg/tcpip/network/ipv6/BUILD | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/tcpip/network/ipv6/BUILD b/pkg/tcpip/network/ipv6/BUILD index c71b69123..d02ca0227 100644 --- a/pkg/tcpip/network/ipv6/BUILD +++ b/pkg/tcpip/network/ipv6/BUILD @@ -25,6 +25,7 @@ go_test( size = "small", srcs = [ "icmp_test.go", + "ipv6_test.go", "ndp_test.go", ], embed = [":ipv6"], @@ -36,6 +37,7 @@ go_test( "//pkg/tcpip/link/sniffer", "//pkg/tcpip/stack", "//pkg/tcpip/transport/icmp", + "//pkg/tcpip/transport/udp", "//pkg/waiter", ], ) |