eggress-protocol-socks 1.0.2

SOCKS4/4a and SOCKS5 protocol for eggress proxy
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod client;
pub mod error;
pub mod server;

#[cfg(test)]
mod test_server;

pub use client::socks4_connect;
pub use error::Socks4Error;
pub use server::{read_socks4_request, write_socks4_reply, Socks4Request, Socks4Status};