//! BACnet/IP network layer implementation.
//!
//! This module provides the complete BACnet/IP network stack:
//! - UDP socket management for BACnet/IP communication
//! - BVLC (BACnet Virtual Link Control) protocol
//! - NPDU (Network Protocol Data Unit) handling
//! - BBMD (BACnet Broadcast Management Device) support
//!
//! ## Architecture
//!
//! ```text
//! ┌─────────────────────────────────────────────────────────────┐
//! │ Network Layer │
//! │ │
//! │ ┌───────────┐ ┌───────────┐ ┌───────────┐ ┌──────────┐ │
//! │ │ UDP │ │ BVLC │ │ NPDU │ │ BBMD │ │
//! │ │ Socket │──│ Protocol │──│ Handler │──│ Manager │ │
//! │ └───────────┘ └───────────┘ └───────────┘ └──────────┘ │
//! └─────────────────────────────────────────────────────────────┘
//! ```
pub use ;
pub use ;
pub use ;
pub use ;