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

veridian_kernel/net/vpn/
mod.rs

1//! VPN tunnel interfaces and protocol implementations
2//!
3//! Provides virtual tunnel device management (TUN/TAP) and
4//! OpenVPN protocol support for secure network tunneling.
5
6pub mod openvpn;
7pub mod tunnel;