shadowsocks-service 1.25.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},
};

pub mod config;
mod http_client;
mod http_service;
pub mod server;
pub(crate) mod tokio_rt;
mod utils;