如何将 libproxy 与 proxy.pac 一起使用?
这里有人使用过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Libproxy
为您透明地处理pac
下载和解析。您的应用程序应该:
创建一个新的
ProxyFactory
对象pf = New ProxyFactory()
对于您连接到的每个资源,检查要使用的代理
(对于您连接的每个 URI!尤其是使用
PAC
每个 URI 可能有所不同,例如卸载图片或视频等)。[...] 连接到代理并进行通信
破坏
pf
对象。只要
pf
对象存在,pac
文件就会被缓存。如需了解更多信息,请随时加入 freenode 上的 #libproxy (IRC) 上的开发人员
Libproxy
handles thepac
downloading and parsing transparently for you.What your app should to:
Create a new
ProxyFactory
objectpf = New ProxyFactory()
For every resource you connect to, check which proxies to use
(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, thepac
file is being cached.For futher info, feel free to join the devs on #libproxy on freenode (IRC)