socks5-impl 0.2.4

Fundamental abstractions and async read / write functions for SOCKS5 protocol and Relatively low-level asynchronized SOCKS5 server implementation based on tokio
Documentation
mod address;
mod command;
mod reply;
mod request;
mod response;
mod udp;

pub mod handshake;

pub use self::{
    address::Address,
    command::Command,
    handshake::{HandshakeMethod, HandshakeRequest, HandshakeResponse},
    reply::Reply,
    request::Request,
    response::Response,
    udp::UdpHeader,
};

pub const SOCKS_VERSION: u8 = 0x05;