使用 Native Client (NaCl) 是否可以在可以接受传入请求的页面中嵌入服务器?

发布于 2024-12-10 20:11:42 字数 58 浏览 0 评论 0原文

是否可以使用 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 技术交流群。

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

发布评论

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

评论(2

泛滥成性 2024-12-17 20:11:42

一般来说,没有。 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.

听,心雨的声音 2024-12-17 20:11:42

在浏览器中获得 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.

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