⚠️ VeridianOS Kernel Documentation - This is low-level kernel code. All functions are unsafe unless explicitly marked otherwise. no_std

veridian_kernel/net/routing/
mod.rs

1//! Routing daemon implementations for VeridianOS
2//!
3//! Provides dynamic routing protocol support:
4//! - RIP v2 (RFC 2453) - Distance-vector routing
5//! - OSPF (RFC 2328) - Link-state routing (single area)
6
7pub mod ospf;
8pub mod rip;