//! Xinet - Socket activation proxy module
//!
//! Provides on-demand service startup via socket proxying.
//! Similar to xinetd/systemd socket activation.
//!
//! # Architecture
//!
//! ```text
//! Client → [XinetProxy] → Backend Service
//! ↓
//! Starts service via zinit if not running
//! Stops service after idle timeout
//! ```
//!
//! # Components
//!
//! - `XinetConfig`: Configuration for a proxy (in zinit-common)
//! - `XinetProxy`: Single proxy instance that handles connections
//! - `XinetManager`: Registry of all proxies with lifecycle management
// Re-export types from zinit-common
pub use crate;
// Export server-side implementation
pub use XinetManager;
pub use ;