IIS7 的 SPDY 模块

发布于 2024-11-10 17:28:35 字数 1459 浏览 0 评论 0原文

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

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

发布评论

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

评论(1

雨落星ぅ辰 2024-11-17 17:28:35

IIS 与 SPDY 几乎没有任何关系。 IIS 只是一个应用程序服务器,它响应由 http.sys 内核模式驱动程序传递的 HTTP 请求。 Windows 中的所有 HTTP 请求均由该驱动程序处理。

这是需要实施 SPDY 的级别。

如果您要实现 SPDY,您需要将其作为 TCP 堆栈和 http.sys 之间的填充驱动程序,或者甚至编写您自己的 http.sys 驱动程序。

或者,您可以编写自己的 SPDY/HTTP 堆栈,但如果您想将其与 IIS 一起使用,那么您需要做很多工作。

IIS has little or nothing to do with SPDY. IIS is just an application server that responds to HTTP requests handed off by the http.sys kernel mode driver. All HTTP requests in Windows are handled by this driver.

This is the level at which SPDY would be need to be implemented.

If you were to implement SPDY you'd need to have this as a shim driver between the TCP stack and http.sys, or maybe even write your own http.sys driver.

Alternatively you could write your own SPDY/HTTP stack but if you wanted to use this with IIS then you're in for a lot of work.

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