Browse Source

Use any_ip in process_arp

Currently, process_arp will not process a request if the ip_addrs
doesn't contain its target. This could lead to weird situations, when
any_ip address is used, but arp has to be handled somehow otherwise. An
example use-case is a benchmarking tool that opens bunch of connections
to the target using different addresses for each one.
Dmitrii Dolgov 1 year ago
parent
commit
4e4eb0de9f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/iface/interface/ipv4.rs

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

@@ -185,7 +185,7 @@ impl InterfaceInner {
                 ..
             } => {
                 // Only process ARP packets for us.
-                if !self.has_ip_addr(target_protocol_addr) {
+                if !self.has_ip_addr(target_protocol_addr) && !self.any_ip {
                     return None;
                 }