zeloxy 0.2.2

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

#[cfg(feature = "socks4")]
mod socks4;

#[cfg(feature = "socks5")]
mod socks5;

#[cfg(feature = "http")]
pub use http::*;

#[cfg(feature = "socks4")]
pub use socks4::*;

#[cfg(feature = "socks5")]
pub use socks5::*;