如何将 libproxy 与 proxy.pac 一起使用?

发布于 2024-07-21 15:36:18 字数 154 浏览 4 评论 0原文

这里有人使用过 Libproxy 库吗? 如果我要创建一个应用程序通过从远程服务器读取 proxy.pac 来解析代理设置,libproxy 会帮助我吗? 关于如何使用 libproxy 下载 pac 脚本并获取代理值有什么想法吗?

谢谢!

吉克

Has anyone here used Libproxy library? If I am to make an application to resolve proxy settings by reading proxy.pac from a remote server, would libproxy help me with that? Any ideas on how to use libproxy to download pac scripts and get the proxy values?

Thanks!

GK

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

宁愿没拥抱 2024-07-28 15:36:18

Libproxy 为您透明地处理 pac 下载和解析。

您的应用程序应该:
创建一个新的 ProxyFactory 对象 pf = New ProxyFactory()

对于您连接到的每个资源,检查要使用的代理

ProxiesToTry=pf.getProxies("http://www.google.com")

(对于您连接的每个 URI!尤其是使用 PAC 每个 URI 可能有所不同,例如卸载图片或视频等)。

[...] 连接到代理并进行通信

破坏 pf 对象。

只要 pf 对象存在,pac 文件就会被缓存。

如需了解更多信息,请随时加入 freenode 上的 #libproxy (IRC) 上的开发人员

Libproxy handles the pac downloading and parsing transparently for you.

What your app should to:
Create a new ProxyFactory object pf = New ProxyFactory()

For every resource you connect to, check which proxies to use

ProxiesToTry=pf.getProxies("http://www.google.com")

(for every URI you connect! Especially with PAC this can be different per URI, like offloading pictures or videos and the like).

[...] connect to the proxy and do your communication

destroy pf object.

As long as the pf object is lying around, the pac file is being cached.

For futher info, feel free to join the devs on #libproxy on freenode (IRC)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文