1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;