Windows 上的浏览器和 winsock
Windows 操作系统上的所有浏览器都通过 Winsock 工作,这是真的吗?谢谢
Is thit true that all browsers on windows OS work thru winsock? thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为所有浏览器实际上都使用Winsock2。它对 Winsock 有多个扩展,大多数与套接字上重叠(异步)I/O 的支持有关。
具体来说,MS Internet Explorer 使用名为 WinINet 的高级库。当然,这又使用了Winsock2。
I think that all the browsers use actually Winsock2. It has several extensions over Winsock, most are related to the support of overlapped (asynchronous) I/O on sockets.
Specifically MS Internet Explorer uses a higher-level library called WinINet. Which in turn of course uses Winsock2.
我不知道他们都这样做(无论如何,“全部”是什么意思?)但是他们还会使用什么? Winsock 是 Windows Sockets API,通过它来协调对网卡的访问。
I don't know for a fact that they all do (what does "all" mean, anyway?) But what else would they use? Winsock is the Windows Sockets API, through which access to network cards is mediated.