1
2
3
4
5
6
7
8
9
10
11
12
//! Stream-based and datagram-based communication implementations.

pub use self::middleware::Middleware;

/// Stream-based over the wire communication.
pub mod stream;
/// Datagram-based over the wire communication.
pub mod dgram;

#[macro_use]
pub mod middleware;