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.
发布评论
评论(1)
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 ownhttp.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.