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;