socks5-impl 0.8.1

Fundamental abstractions and async read / write functions for SOCKS5 protocol and Relatively low-level asynchronized SOCKS5 server implementation based on tokio
Documentation
1
2
3
4
5
6
7
8
9
10
#![doc = include_str!("../README.md")]

#[cfg(feature = "client")]
pub mod client;
pub(crate) mod error;
pub mod protocol;
#[cfg(feature = "server")]
pub mod server;

pub use crate::error::{Error, Result};