Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
- std medium-ethernet proto-ipv6 socket-tcp
- std medium-ethernet medium-ip proto-ipv4 socket-icmp socket-tcp
- std medium-ip proto-ipv6 socket-icmp socket-tcp
- std medium-ip proto-ipv4 proto-ipv6 socket-tcp socket-udp

# Test features chosen to be as aggressive as possible.
- std medium-ethernet medium-ip medium-ieee802154 proto-ipv4 proto-ipv6 socket-raw socket-udp socket-tcp socket-icmp socket-dns async
Expand Down
2 changes: 1 addition & 1 deletion src/iface/interface/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ impl<'a> OutPackets<'a> {
}

#[allow(unused)]
#[cfg(feature = "proto-ipv4")]
#[cfg(feature = "proto-ipv4-fragmentation")]
pub(crate) struct Ipv4OutPacket<'a> {
/// The buffer that holds the unfragmented 6LoWPAN packet.
buffer: ManagedSlice<'a, u8>,
Expand Down