Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 866 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 866 Bytes

futures-socks5

An implementation of a SOCKSv5 proxy server built on top of futures-mio.

Build Status Build status

Usage

First, run the server

$ cargo run
   ...
Listening for socks5 proxy connections on 127.0.0.1:8080

Then in a separate window you can test out the proxy:

$ export https_proxy=socks5h://localhost:8080
$ curl -v https://www.google.com

License

futures-socks5 is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0), with portions covered by various BSD-like licenses.

See LICENSE-APACHE, and LICENSE-MIT for details.