rust_supervisor/ipc/mod.rs
1//! IPC (Inter-Process Communication) security modules.
2//!
3//! This module tree implements the nine IPC security control points
4//! (C1-C9) for the dashboard Unix domain socket IPC channel.
5//! The entire subtree is gated behind `#[cfg(unix)]` because it depends
6//! on Unix Domain Sockets and peer credential syscalls.
7
8pub mod security;