diff --git a/src/phy/pcap_writer.rs b/src/phy/pcap_writer.rs index fc6c3b236..aadf2a27f 100644 --- a/src/phy/pcap_writer.rs +++ b/src/phy/pcap_writer.rs @@ -14,8 +14,8 @@ enum_with_unknown! { Ethernet = 1, /// IPv4 or IPv6 packets (depending on the version field) Ip = 101, - /// IEEE 802.15.4 packets with FCS included. - Ieee802154WithFcs = 195, + /// IEEE 802.15.4 packets without FCS. + Ieee802154WithoutFcs = 230, } } @@ -135,7 +135,7 @@ impl PcapWriter { #[cfg(feature = "medium-ethernet")] Medium::Ethernet => PcapLinkType::Ethernet, #[cfg(feature = "medium-ieee802154")] - Medium::Ieee802154 => PcapLinkType::Ieee802154WithFcs, + Medium::Ieee802154 => PcapLinkType::Ieee802154WithoutFcs, }; sink.global_header(link_type); PcapWriter {