如何与tor网络通信

发布于 2024-09-11 12:11:54 字数 97 浏览 9 评论 0原文

我如何与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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

香草可樂 2024-09-18 12:11:54

tor 是一个 SOCKS 代理,因此您应该能够遵循 INDY 的 SOCKS 答案常见问题解答

indy 10:

  1. 创建一个IOHandler,例如TIdIOHandlerStack或SSL IOHandler并分配TCPClient.IOHandler代码> 属性 this.
  2. 创建一个 TIdSocksInfo 对象并将其分配给 IOHandlerTransparentProxy 属性。
  3. 根据需要设置 TIdSocksInfo 属性。
  4. 如果 SOCKS 代理本身需要使用另一个代理,则必须使用,将链式代理设置为 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:

  1. Create an IOHandler such as TIdIOHandlerStack or SSL IOHandler and assign the TCPClient.IOHandler property this.
  2. Create a TIdSocksInfo object and assign it to the IOHandler's TransparentProxy property.
  3. Set the TIdSocksInfo properties as required.
  4. If there is another proxy that the SOCKS Proxy itself needs to use, you have to use, set the Chained Proxy to a TIdCustomTransparentProxy such as TIdSocksInfo for another socks Proxy or a TIdConnectThroughHttpProxy for a HTTP Tunneling proxy.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文