https://github.com/thehxdev/socks5rs
Minimal, Low-Level and simple Socks5 protocol implementation
https://github.com/thehxdev/socks5rs
networking rust socks5
Last synced: 19 days ago
JSON representation
Minimal, Low-Level and simple Socks5 protocol implementation
- Host: GitHub
- URL: https://github.com/thehxdev/socks5rs
- Owner: thehxdev
- License: mit
- Created: 2025-04-01T21:30:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-09T05:45:44.000Z (about 1 year ago)
- Last Synced: 2025-10-30T00:58:01.382Z (9 months ago)
- Topics: networking, rust, socks5
- Language: Rust
- Homepage:
- Size: 43.9 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Socks5rs
Socks5rs is a very minimal and simple socks5 protocol implementation based on [RFC1928](https://datatracker.ietf.org/doc/html/rfc1928)
and [tokio](https://tokio.rs/) async runtime (with `io-util` feature flag). This library is low-level and does not abstract IO operations
except tiny `io` module. Instead it operates on raw bytes and provides abstractions for working with Socks5 protocol itself to be used in
many situations and with any IO implementation (See [Sans I/O](https://sans-io.readthedocs.io/)).
## Examples
- [Socks5 server with support for `CONNECT` command](examples/server.rs)