Proxifier 是如何工作的?
如您所知,Proxifier 是一个程序,允许不支持通过代理服务器工作的网络应用程序通过 HTTPS 或 SOCKS 进行操作。
它可以处理来自正在运行的应用程序的任何传输。我想知道它是如何做到这一点以及我如何写一个这样的。
As you know Proxifier
is a program that allows network applications that do not support working through proxy servers to operate through an HTTPS or SOCKS.
It can handle any transmission from running applications. I want to know how it can do this and how I can write one like that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
FreeCap 是您的最佳选择。
它根据 GNU 通用公共许可证发布并用 Delphi 编写。
FreeCap is your way to go.
It's released under GNU General Public Licence and written in Delphi.
一个socksifier定义了一个动态库,其功能与操作系统套接字层相同,但是以使用socks代理的方式定义。被socksified 的程序使用该库而不是操作系统提供的库来进行网络通信。
A socksifier defines a dynamic library with the same functions as the OS socket layer, but defined in such a way as to use a socks proxy. The program being socksified uses that library instead of the OS-supplied one for its network communication.