mirror of
https://github.com/smoltcp-rs/smoltcp.git
synced 2025-10-01 23:01:11 +00:00
13 lines
445 B
Rust
13 lines
445 B
Rust
//! Network interface logic.
|
|
//!
|
|
//! The `iface` module deals with the *network interfaces*. It filters incoming frames,
|
|
//! provides lookup and caching of hardware addresses, and handles management packets.
|
|
|
|
mod neighbor;
|
|
mod ethernet;
|
|
|
|
pub use self::neighbor::Neighbor as Neighbor;
|
|
pub(crate) use self::neighbor::Answer as NeighborAnswer;
|
|
pub use self::neighbor::Cache as NeighborCache;
|
|
pub use self::ethernet::Interface as EthernetInterface;
|