1
2
3
4
5
6
7
8
9
10
11
12
//! Stream interface for communicating with shadowsocks proxy servers

// pub use self::{
//     client::{ProxyClientStream, ProxyClientStreamReadHalf, ProxyClientStreamWriteHalf},
//     server::{ProxyServerStream, ProxyServerStreamReadHalf, ProxyServerStreamWriteHalf},
// };

pub use self::{client::ProxyClientStream, server::ProxyServerStream};

pub mod client;
pub mod protocol;
pub mod server;