2021-02-03 04:09:37 +00:00
|
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
2022-11-21 22:31:31 +00:00
|
|
|
#![cfg_attr(
|
|
|
|
feature = "nightly",
|
|
|
|
feature(type_alias_impl_trait, async_fn_in_trait, impl_trait_projections)
|
|
|
|
)]
|
|
|
|
#![cfg_attr(feature = "nightly", allow(incomplete_features))]
|
2021-02-03 04:09:37 +00:00
|
|
|
|
|
|
|
// This mod MUST go first, so that the others see its macros.
|
|
|
|
pub(crate) mod fmt;
|
|
|
|
|
2022-12-07 14:55:46 +00:00
|
|
|
pub mod device;
|
2021-02-03 04:09:37 +00:00
|
|
|
mod stack;
|
|
|
|
|
2022-05-23 01:50:43 +00:00
|
|
|
pub use stack::{Config, ConfigStrategy, Stack, StackResources};
|
2021-04-07 17:06:45 +00:00
|
|
|
|
|
|
|
#[cfg(feature = "tcp")]
|
2022-05-04 18:48:37 +00:00
|
|
|
pub mod tcp;
|
2021-02-03 04:09:37 +00:00
|
|
|
|
2022-07-28 08:25:47 +00:00
|
|
|
#[cfg(feature = "udp")]
|
|
|
|
pub mod udp;
|
|
|
|
|
2021-02-03 04:09:37 +00:00
|
|
|
// smoltcp reexports
|
2022-06-12 20:15:44 +00:00
|
|
|
pub use smoltcp::time::{Duration as SmolDuration, Instant as SmolInstant};
|
2021-11-26 19:39:21 +00:00
|
|
|
#[cfg(feature = "medium-ethernet")]
|
|
|
|
pub use smoltcp::wire::{EthernetAddress, HardwareAddress};
|
|
|
|
pub use smoltcp::wire::{IpAddress, IpCidr, Ipv4Address, Ipv4Cidr};
|
2022-06-01 11:48:09 +00:00
|
|
|
#[cfg(feature = "proto-ipv6")]
|
|
|
|
pub use smoltcp::wire::{Ipv6Address, Ipv6Cidr};
|
2022-07-28 08:25:47 +00:00
|
|
|
#[cfg(feature = "udp")]
|
|
|
|
pub use smoltcp::{socket::udp::PacketMetadata, wire::IpListenEndpoint};
|