Skip to main content

nex_core/
lib.rs

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 mod bitfield;
5pub mod interface;
6pub mod ip;
7pub mod mac;