使用 Native Client (NaCl) 是否可以在可以接受传入请求的页面中嵌入服务器?
是否可以使用 Native Client 打开其他浏览器可以连接的端口?就像浏览器到浏览器的连接一样?
Is it possible to open a port using Native Client that other browsers can connect to? Like a browser to browser connection?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一般来说,没有。 NaCl 不允许程序直接打开套接字(这将是一个安全问题)。 NaCl/Pepper 应用程序旨在具有与 Javascript 应用程序相同的一般功能;因此,像 WebSockets(连接回服务器)之类的东西将受到支持,但不能直接在客户端计算机上打开文件或套接字。 HTML5 中的 P2P 风格网络正在进行一些工作(例如 http://www.w3.org/TR/2008/WD-html5-20080122/#peer-to-peer)这可能会得到Pepper 也支持,但我不知道它的状态如何。
In general, no. NaCl does not allow programs to open sockets directly (that would be a security problem). It is intended that NaCl/Pepper applications have the same general capabilities as Javascript applications; so something like WebSockets (connection back to the server) would be supported, but not directly opening files or sockets on the client machine. There's some work going on to have a P2P style networking in HTML5 (e.g. http://www.w3.org/TR/2008/WD-html5-20080122/#peer-to-peer) which would likely get Pepper support as well, but I don't know what the status of that is.
在浏览器中获得 P2P 连接的唯一方法是通过 WebRTC。如果 NaCl 允许使用 WebRTC(通过 Pepper API 或其他),那么除了实现之外,您唯一需要的就是将客户端相互连接的代理服务器。请参阅 PeerJS 了解一些信息。
The only way to get P2P connection in browser is through WebRTC. If NaCl allows to use WebRTC (though Pepper API or whatever) then the only thing you need besides implementation is broker server that will connect clients with each other. See PeerJS for some info.