hacker1024 / proxies

A collection of proxy API wrappers for Dart.
https://pub.dev/packages/proxies
MIT License
3 stars 2 forks source link

socks5 support #1

Open alr2413 opened 3 years ago

alr2413 commented 3 years ago

is it possible to use socks5 protocol?

hacker1024 commented 2 years ago

Dart does not have native support for SOCKS5. A package exists for low-level connections, but it does not implement Socket, and cannot easily be used with HTTP.

It may be possible to make a Socket implementation that uses the SOCKS5 package. The package would have to be made null-safe first.

This is a priority for me, but I won't get much of a chance to work on it in the foreseeable future. PRs are welcome.