embassy/embassy-net/src/lib.rs

31 lines
969 B
Rust
Raw Normal View History

2021-02-03 05:09:37 +01:00
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(feature = "nightly", feature(type_alias_impl_trait))]
2021-02-03 05:09:37 +01:00
// This mod MUST go first, so that the others see its macros.
pub(crate) mod fmt;
mod device;
mod packet_pool;
mod stack;
pub use device::{Device, LinkState};
pub use packet_pool::{Packet, PacketBox, PacketBoxExt, PacketBuf, MTU};
2022-05-23 03:50:43 +02:00
pub use stack::{Config, ConfigStrategy, Stack, StackResources};
#[cfg(feature = "tcp")]
2022-05-04 20:48:37 +02:00
pub mod tcp;
2021-02-03 05:09:37 +01:00
2022-07-28 10:25:47 +02:00
#[cfg(feature = "udp")]
pub mod udp;
2021-02-03 05:09:37 +01:00
// smoltcp reexports
pub use smoltcp::phy::{DeviceCapabilities, Medium};
2022-06-12 22:15:44 +02:00
pub use smoltcp::time::{Duration as SmolDuration, Instant as SmolInstant};
#[cfg(feature = "medium-ethernet")]
pub use smoltcp::wire::{EthernetAddress, HardwareAddress};
pub use smoltcp::wire::{IpAddress, IpCidr, Ipv4Address, Ipv4Cidr};
#[cfg(feature = "proto-ipv6")]
pub use smoltcp::wire::{Ipv6Address, Ipv6Cidr};
2022-07-28 10:25:47 +02:00
#[cfg(feature = "udp")]
pub use smoltcp::{socket::udp::PacketMetadata, wire::IpListenEndpoint};