zeloxy 0.5.2

A library for creating lightweight, async, and lag-free proxy connections.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(any(feature = "http", feature = "socks4", feature = "socks5"))]
pub mod protocols;

#[cfg(feature = "stream")]
pub mod stream;

mod auth;
mod connection;
mod definition;
mod validate;

pub use auth::*;
pub use connection::*;
pub use definition::*;
pub use validate::*;