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

veridian_kernel/fs/nfs/
mod.rs

1//! NFS v4 Client Implementation (RFC 7530)
2//!
3//! Provides an NFS v4 client with compound request/response handling,
4//! XDR encoding/decoding, and VFS mount integration.
5
6#![allow(dead_code)]
7
8pub mod client;