-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support SOCSK5 proxy for BT UDP Trackers and DHT connections #1857
base: master
Are you sure you want to change the base?
Conversation
By inherienting DHTConnectionImpl that is used by UDP trackers and DHT connections
Rename func according to RFC. Fix bad type of return. Update arg type to get bnd addr and port.
Separate sending cmd and receiving reply out as they are shared in procedures. Change returns of start* method.
I need this function too. |
btw if you need a quick SOCKS5 server you can do this: |
I have merged this with the current upstream head though it is a pretty old PR. I also locally tested it in a network that blocks BT (an university network actually), and it works as expected. I also built it at https://github.com/myl7/aria2/releases/tag/1.38.0-myl7.1%2B1a2d31fa since someone tells me they have difficulty building it. |
The PR adds a new class
DHTConnectionSocksProxyImpl
which inherientsDHTConnectionImpl
, and is used inDHTSetup
, to provide SOCKS5 proxy support for UDP connections in BT, including UDP tracker and DHT connections (asDHTConnectionImpl
is used by both DHT and UDP trackers despite the name).The actual SOCKS5 logic is wrapped in class
SocksProxySocket
, to make it possible to reuse the logic in other features like general SOCKS5 proxy support for HTTP downloading.The PR also adds options
bt-udp-socks-proxy
,bt-udp-socks-proxy-user
, andbt-udp-socks-proxy-pass
to configure the proxy. When no proxy is set, the app fallbacks to useDHTConnectionImpl
that is without proxy. Parsing and cleaning ofbt-udp-socks-proxy
uses newly addedSocksProxyOptionHandler
, which works likeHttpProxyOptionHandler
. These UDP proxy options, though put aside other proxy options, wont be overrided byall-proxy
.A test has been included in the PR. However, as the test requires a SOCKS5 proxy server, currently the test is surpressed by early returning. I would like to suggest adding a SOCKS5 proxy server as fixtures via adding a 3rd party library or asking developers to start one in advance by such as GOST.
Ref: #470 and part of #153