//! Server-side implementation of the interactsh OOB callback protocol.
//!
//! Provides [`InteractshServer`] — an embeddable server that accepts client
//! registrations, records DNS / HTTP / SMTP interactions, and returns
//! encrypted poll responses that the existing [`crate::client`] can decrypt.
/// DNS listener — hand-parsed wire protocol, no external DNS crate.
/// Raw HTTP listener for interactsh protocol routes and callback recording.
/// Core server state: client registry, interaction storage, encrypt-and-poll.
/// Minimal SMTP listener for blind-SMTP callback recording.
pub use ;