//! DUL (DICOM Upper Layer) transport.
//!
//! A thin layer over `tokio::net::TcpStream` that reads and writes PDUs.
//! Higher-level state management lives in [`crate::association`].
use crate;
use DcmResult;
use TcpStream;
// ── DulTransport ──────────────────────────────────────────────────────────────
/// Wraps a `TcpStream` with PDU-level framing helpers.