Browse Source

Fix ICMP error returned by EthernetInterface for unknown IP protocols.

whitequark 7 năm trước cách đây
mục cha
commit
c5aa37185f
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/iface/ethernet.rs

+ 1 - 1
src/iface/ethernet.rs

@@ -235,7 +235,7 @@ impl<'a, 'b, 'c, DeviceT: Device + 'a> Interface<'a, 'b, 'c, DeviceT> {
                 Ok(Response::Nop),
             _ => {
                 let icmp_reply_repr = Icmpv4Repr::DstUnreachable {
-                    reason: Icmpv4DstUnreachable::PortUnreachable,
+                    reason: Icmpv4DstUnreachable::ProtoUnreachable,
                     header: ipv4_repr,
                     data:   &ipv4_packet.payload()[0..8]
                 };