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

veridian_kernel/drivers/iscsi/
mod.rs

1//! iSCSI Initiator Implementation (RFC 7143)
2//!
3//! Provides an iSCSI initiator with login/logout session management,
4//! SCSI command transport, and text parameter negotiation.
5
6#![allow(dead_code)]
7
8pub mod initiator;