pub mod auth;
mod conn;
mod peer;
pub mod proto;
pub use conn::Connection;
pub use peer::*;

pub const PROTOCOL_VERSION: u32 = 8;
