mabi-bacnet 1.4.0

Mabinogion - BACnet/IP simulator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! BACnet/IP server implementation.
//!
//! This module provides a high-performance BACnet/IP server with:
//!
//! - Service handler registry pattern
//! - UDP network handling with broadcast support
//! - COV subscription management
//! - Device discovery (Who-Is/I-Am)
//! - Metrics collection
//! - Graceful shutdown support

mod bacnet_server;
mod metrics;

pub use bacnet_server::{BACnetServer, ServerConfig, ServerEvent};
pub use metrics::{ServerMetrics, ServerMetricsSnapshot};