https://github.com/nibble-4bits/socks-server
SOCKS5 implementation in Rust
https://github.com/nibble-4bits/socks-server
Last synced: 3 months ago
JSON representation
SOCKS5 implementation in Rust
- Host: GitHub
- URL: https://github.com/nibble-4bits/socks-server
- Owner: nibble-4bits
- License: mit
- Created: 2023-06-26T04:03:40.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-12T06:11:07.000Z (almost 2 years ago)
- Last Synced: 2025-10-12T21:36:40.851Z (3 months ago)
- Language: Rust
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SOCKS server
Small and straightforward Rust implementation of the SOCKSv5 protocol described in [RFC1928](https://datatracker.ietf.org/doc/html/rfc1928). I made this to learn more about async programming in Rust.
## Built with
- [Tokio](https://tokio.rs/), as async runtime for handling asynchronous connections.
- [thiserror](https://crates.io/crates/thiserror), for easier handling of dynamic errors.
## License
[MIT](https://github.com/nibble-4bits/socks-server/blob/main/LICENSE)