bmp_client/lib.rs
1// #![deny(missing_docs)]
2
3//! Provides tools for receiving and decoding a stream of BMP messages
4//!
5//! BMP (BGP Monitoring Protocol) is a method for BGP-speakers, typically network routers
6//! to provide telemetry relating to BGP state.
7
8mod client;
9mod error;
10pub mod types {
11 pub use bmp_protocol::types::*;
12}
13
14pub use self::client::BmpClient;
15pub use self::error::*;