//! WireForge App — application-layer protocol parsing, construction, and pcap I/O.
//!
//! This crate provides:
//! - DNS, mDNS, LLMNR — name resolution protocols
//! - DHCPv4 — network configuration
//! - NTPv4 — time synchronization
//! - HTTP/1.1 — request/response line parsing
//! - TLS ClientHello — SNI and extensions
//! - SSH — banner and key exchange
//! - MQTT 3.1.1/5.0 — IoT messaging
//! - Modbus TCP — industrial control
//! - RADIUS — authentication and accounting
//! - NetBIOS-NS — Windows name service
//! - SMB2 — file sharing negotiate
//! - RDP — remote desktop connection
//! - pcap/pcapng — packet capture file I/O
//! - [`AppPacket`] — unified application-layer packet enum
pub use AppPacket;