shadowsocks 1.24.0

shadowsocks is a fast tunnel proxy that helps you bypass firewalls.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Shadowsocks Server manager
//!
//! Service for managing multiple relay servers. [Manage Multiple Users](https://github.com/shadowsocks/shadowsocks/wiki/Manage-Multiple-Users)

pub use self::{client::ManagerClient, listener::ManagerListener};

pub mod client;
pub mod datagram;
pub mod error;
pub mod listener;
pub mod protocol;