Skip to content

Commit

Permalink
remove multicast groups that we *don't* want as solicited node.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dirbaio committed Nov 28, 2024
1 parent 2a5f90a commit 2be5407
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/iface/interface/multicast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ impl Interface {
.filter_map(|group_addr| match group_addr {
IpAddress::Ipv6(address)
if address.is_solicited_node_multicast()
&& self.inner.has_solicited_node(*address) =>
&& !self.inner.has_solicited_node(*address) =>
{
Some(*group_addr)
}
Expand Down

0 comments on commit 2be5407

Please sign in to comment.