Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion dpd-client/tests/integration_tests/mcast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ const MULTICAST_TEST_IPV4: Ipv4Addr = Ipv4Addr::new(224, 0, 1, 0);
const MULTICAST_TEST_IPV6: Ipv6Addr =
Ipv6Addr::new(0xff0e, 0, 0, 0, 0, 0, 1, 0x1010);
const MULTICAST_TEST_IPV4_SSM: Ipv4Addr = Ipv4Addr::new(232, 123, 45, 67);
// Group ID must fall in the dynamically allocatable SSM range, so the
// low 32 bits are >= 0x8000_0000.
const MULTICAST_TEST_IPV6_SSM: Ipv6Addr =
Ipv6Addr::new(0xff3e, 0, 0, 0, 0, 0, 0, 0x1111);
Ipv6Addr::new(0xff3e, 0, 0, 0, 0, 0, 0x8000, 0x1111);
const MULTICAST_NAT_IP: Ipv6Addr =
Ipv6Addr::new(ADMIN_LOCAL_MULTICAST_PREFIX, 0, 0, 0, 0, 0, 0, 1);
const GIMLET_MAC: &str = "11:22:33:44:55:66";
Expand Down
Loading