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
//! Load balancer

pub use self::{
    ping_balancer::{PingBalancer, PingBalancerBuilder, ServerType},
    server_data::{ServerIdent, ServerScore},
};

pub mod ping_balancer;
pub mod server_data;
pub mod server_stat;