如何与tor网络通信
我如何与Delphi中的Tor网络通信?
我想使用 tor 网络进行 IDHTTP1 操作
可以吗?
如果是这样,有人可以帮助我吗?
How can I communicate with Tor network in Delphi?
I want to use tor network for my IDHTTP1 operations
Is it possible?
If so, can any one help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
tor 是一个 SOCKS 代理,因此您应该能够遵循 INDY 的 SOCKS 答案常见问题解答:
indy 10:
IOHandler
,例如TIdIOHandlerStack
或SSLIOHandler
并分配TCPClient.IOHandler
代码> 属性 this.TIdSocksInfo
对象并将其分配给IOHandler
的TransparentProxy
属性。TIdSocksInfo
属性。TIdCustomTransparentProxy
例如另一个袜子代理的TIdSocksInfo
或 < code>TIdConnectThroughHttpProxy 用于 HTTP 隧道代理。tor is a SOCKS proxy, so you should be able to follow the SOCKS answer from the INDY Faq:
indy 10:
IOHandler
such asTIdIOHandlerStack
or SSLIOHandler
and assign theTCPClient.IOHandler
property this.TIdSocksInfo
object and assign it to theIOHandler
'sTransparentProxy
property.TIdSocksInfo
properties as required.TIdCustomTransparentProxy
such asTIdSocksInfo
for another socks Proxy or aTIdConnectThroughHttpProxy
for a HTTP Tunneling proxy.