Browse Source

Fix a typo that broke ARP replies.

whitequark 7 years ago
parent
commit
7e6e379e09
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/iface/ethernet.rs

+ 1 - 1
src/iface/ethernet.rs

@@ -160,7 +160,7 @@ impl<'a, 'b, 'c, DeviceT: Device + 'a> Interface<'a, 'b, 'c, DeviceT> {
                     return Err(Error::Malformed)
                 }
 
-                if operation == ArpOperation::Reply &&
+                if operation == ArpOperation::Request &&
                         self.has_protocol_addr(target_protocol_addr) {
                     Ok(Response::Arp(ArpRepr::EthernetIpv4 {
                         operation: ArpOperation::Reply,