瀏覽代碼

EthernetInterface::set_ipv4_gateway should panic on non-unicast addrs.

whitequark 7 年之前
父節點
當前提交
35619edb8b
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      src/iface/ethernet.rs

+ 4 - 0
src/iface/ethernet.rs

@@ -250,9 +250,13 @@ impl<'b, 'c, DeviceT> Interface<'b, 'c, DeviceT>
     }
 
     /// Set the IPv4 gateway of the interface.
+    ///
+    /// # Panics
+    /// This function panics if the given address is not unicast.
     pub fn set_ipv4_gateway<GatewayAddrT>(&mut self, gateway: GatewayAddrT)
             where GatewayAddrT: Into<Option<Ipv4Address>> {
         self.inner.ipv4_gateway = gateway.into();
+        self.inner.ipv4_gateway.map(|addr| InterfaceInner::check_gateway_addr(&addr));
     }
 
     /// Transmit packets queued in the given sockets, and receive packets queued