pub mod auth; pub mod config; pub mod protocol; // Constants pub const DEFAULT_BUFFER_SIZE: usize = 65536; // Max UDP packet size pub const TEST_MODE_BANNER: &str = " ╔════════════════════════════════════════════════════╗ ║ TEST MODE ║ ║ Packets will be displayed but not sent to network ║ ╚════════════════════════════════════════════════════╝ "; pub const MAX_DISPLAY_BYTES: usize = 64; // Maximum bytes to display in test mode