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

veridian_kernel/services/cni/
mod.rs

1//! Container Network Interface (CNI) implementation
2//!
3//! Provides plugin-based container networking with bridge/VXLAN overlays
4//! and IPAM address management.
5
6#![allow(dead_code)]
7
8pub mod ipam;
9pub mod overlay;
10pub mod plugin;