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
10
11
12
13
14
15
//! Shadowsocks Local HTTP proxy server
//!
//! https://www.ietf.org/rfc/rfc2068.txt

pub use self::{
    http_client::{HttpClient, HttpClientError},
    server::{Http, HttpBuilder, HttpConnectionHandler},
};

mod http_client;
mod http_service;
mod http_stream;
pub mod server;
mod tokio_rt;
mod utils;