Browse Source

remove multicast groups that we *don't* want as solicited node.

Dario Nieuwenhuis 6 tháng trước cách đây
mục cha
commit
2be54073f1
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/iface/interface/multicast.rs

+ 1 - 1
src/iface/interface/multicast.rs

@@ -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)
                 }