1//! This module contains the implementation of password authentication method of SOCKS5 protocol handshake. 2 3mod error; 4mod request; 5mod response; 6 7pub use self::{error::Error, request::Request, response::Response}; 8 9pub const SUBNEGOTIATION_VERSION: u8 = 0x01;