smoltcp/iface/
mod.rs

1/*! Network interface logic.
2
3The `iface` module deals with the *network interfaces*. It filters incoming frames,
4provides lookup and caching of hardware addresses, and handles management packets.
5*/
6
7mod fragmentation;
8mod interface;
9#[cfg(any(feature = "medium-ethernet", feature = "medium-ieee802154"))]
10mod neighbor;
11mod route;
12#[cfg(feature = "proto-rpl")]
13mod rpl;
14mod socket_meta;
15mod socket_set;
16
17mod packet;
18
19#[cfg(feature = "multicast")]
20pub use self::interface::multicast::MulticastError;
21pub use self::interface::{
22    Config, Interface, InterfaceInner as Context, PollIngressSingleResult, PollResult,
23};
24
25pub use self::route::{Route, RouteTableFull, Routes};
26pub use self::socket_set::{SocketHandle, SocketSet, SocketStorage};