Explorar el Código

Merge #787

787: IPv4: Don't discard from unspecified src addresses r=Dirbaio a=bjoernQ

IPv4 packets from `0.0.0.0` get discarded early. This makes it impossible to create a DHCP server.

Not sure if this is the right location or even the right approach for this fix.

Maybe there is also a way to make this work without modifying the code?


Co-authored-by: bjoernQ <bjoern.quentin@mobile-j.de>
bors[bot] hace 1 año
padre
commit
6687745cbb
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      src/iface/interface/ipv4.rs

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

@@ -18,9 +18,9 @@ impl InterfaceInner {
         frag: &'a mut FragmentsBuffer,
     ) -> Option<IpPacket<'a>> {
         let ipv4_repr = check!(Ipv4Repr::parse(ipv4_packet, &self.caps.checksum));
-        if !self.is_unicast_v4(ipv4_repr.src_addr) {
-            // Discard packets with non-unicast source addresses.
-            net_debug!("non-unicast source address");
+        if !self.is_unicast_v4(ipv4_repr.src_addr) && !ipv4_repr.src_addr.is_unspecified() {
+            // Discard packets with non-unicast source addresses but allow unspecified
+            net_debug!("non-unicast or unspecified source address");
             return None;
         }