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

veridian_kernel/fs/smb/
mod.rs

1//! CIFS/SMB2/3 Client Implementation
2//!
3//! Provides an SMB2/3 client with dialect negotiation, NTLM authentication,
4//! file I/O operations, and credit management.
5
6#![allow(dead_code)]
7
8pub mod client;