shadowsocks-service 1.24.0

shadowsocks is a fast tunnel proxy that helps you bypass firewalls.
Documentation
1
2
3
4
5
6
7
8
9
//! Shadowsocks Local Network Utilities

pub use self::{
    tcp::{auto_proxy_io::AutoProxyIo, auto_proxy_stream::AutoProxyClientStream},
    udp::{UdpAssociationManager, UdpInboundWrite},
};

pub(crate) mod tcp;
pub(crate) mod udp;