net-lattice-model 0.1.0

The domain model of operating system networking state (routes, interfaces, DNS, ...), with no operating-system dependency.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! The domain model of operating system networking state.
//!
//! No operating-system dependency. Stage 0.1 includes only the `route`
//! module — `interface`, `neighbor`, `dns`, and `event` are added in later
//! stages per ARCHITECTURE.md's Incremental Delivery Plan.

mod address;
pub mod route;

pub use address::{IpAddress, Network};
pub use route::Route;