summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/stack/ndp_test.go
diff options
context:
space:
mode:
authorGhanan Gowripalan <ghanan@google.com>2019-10-17 13:05:03 -0700
committergVisor bot <gvisor-bot@google.com>2019-10-17 13:06:15 -0700
commit962aa235de4e614147dd00b55967614e93ba2660 (patch)
treeed26888ec7163ddedcd019e7f8b850b488ca9cc8 /pkg/tcpip/stack/ndp_test.go
parent06ed9e329d46268cf12fe07bd3974c5d54ae7e0b (diff)
NDP Neighbor Solicitations sent during DAD must have an IP hop limit of 255
NDP Neighbor Solicitations sent during Duplicate Address Detection must have an IP hop limit of 255, as all NDP Neighbor Solicitations should have. Test: Test that DAD messages have the IPv6 hop limit field set to 255. PiperOrigin-RevId: 275321680
Diffstat (limited to 'pkg/tcpip/stack/ndp_test.go')
-rw-r--r--pkg/tcpip/stack/ndp_test.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/tcpip/stack/ndp_test.go b/pkg/tcpip/stack/ndp_test.go
index cc789d70f..849c2f35f 100644
--- a/pkg/tcpip/stack/ndp_test.go
+++ b/pkg/tcpip/stack/ndp_test.go
@@ -173,6 +173,7 @@ func TestDADResolve(t *testing.T) {
// Check NDP packet.
checker.IPv6(t, p.Header.ToVectorisedView().First(),
+ checker.TTL(header.NDPHopLimit),
checker.NDPNS(
checker.NDPNSTargetAddress(addr1)))
}