1//! Core network types and helpers shared across the `nex` crates. 2//! Includes interface, MAC/IP, and bitfield utilities used by low-level networking code. 3 4pub use netdev; 5 6pub mod bitfield; 7pub mod interface; 8pub mod ip; 9pub mod mac;