#![deny(missing_docs)]
#![cfg_attr(feature = "clippy", feature(plugin))]
#![cfg_attr(feature = "clippy", plugin(clippy))]
#![cfg_attr(feature = "nightly", feature(test))]
#![cfg_attr(
feature = "clippy",
allow(
len_without_is_empty,
doc_markdown,
needless_return,
cast_ptr_alignment,
)
)]
#[macro_use]
extern crate log;
pub use socket::BufferedUtpStream;
pub use socket::UtpSocketRef as UtpSocket;
pub use socket::UtpStream;
pub use socket::UtpStreamDriver;
mod bit_iterator;
mod error;
mod packet;
mod socket;
mod time;
mod util;