sticnarf / tokio-socks

Asynchronous SOCKS proxy support for Rust.
MIT License
68 stars 30 forks source link

support for unix socket #19

Closed trinity-1686a closed 3 years ago

trinity-1686a commented 4 years ago

For a personal project I need to connect to a local socks proxy through unix domain socket. This is currently not supported by this crate, so I wanted to inquire if you were interested in supporting that, or if I should look for an other crate. It could be done by allowing the end user to provide an AsyncRead+AsyncWrite, which would allow for this proposal to be implemented at the same time.

sticnarf commented 4 years ago

It could be done by allowing the end user to provide an AsyncRead+AsyncWrite, which would allow for this proposal to be implemented at the same time.

Sounds like a good idea. I can add this feature but maybe not very soon.

Of course, it'll be great if you can just open a pull request for it.

trinity-1686a commented 3 years ago

fixed by #20