shadowsocks/lib.rs
1macro_rules! ready {
2 ($e:expr $(,)?) => {
3 match $e {
4 std::task::Poll::Ready(t) => t,
5 std::task::Poll::Pending => return std::task::Poll::Pending,
6 }
7 };
8}
9
10pub mod args;
11pub mod cipher;
12pub mod config;
13mod copy;
14pub mod io;
15mod read_exact;
16pub mod resolver;
17pub mod socks5;
18pub mod util;
19mod write_all;