socks5-impl 0.3.3

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, AddressType},
    command::Command,
    handshake::{password_method::UserKey, AuthMethod, HandshakeRequest, HandshakeResponse},
    reply::Reply,
    request::Request,
    response::Response,
    udp::UdpHeader,
};

pub const SOCKS_VERSION: u8 = 0x05;