1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
// #![deny(missing_docs)]

//! Provides tools for receiving and decoding a stream of BMP messages
//!
//! BMP (BGP Monitoring Protocol) is a method for BGP-speakers, typically network routers
//! to provide telemetry relating to BGP state.

mod client;
mod error;
pub mod types {
    pub use bmp_protocol::types::*;
}

pub use self::client::BmpClient;
pub use self::error::*;