http.sys

Difference between http://+:8080/ and http://*:8080/

五迷三道 提交于 2019-11-28 07:27:32
问题 What are the differences between these two prefixes in terms of HttpListener or any other? http://+:8080/ http://*:8080/ 回答1: http://*:8080/ : Receive all HTTP requests on port 8080 that are not already being handled by some other HttpListener . http://+:8080/ : Receive all HTTP requests on port 8080 even if they're already handled by another HttpListener . 回答2: In addition to @Paulpro's great answer, the link posted by @rownage (see this answer) provides some more information about the

Disabling HTTP/2 / SPDY in HTTP.SYS and IIS in Windows 10

巧了我就是萌 提交于 2019-11-27 02:15:53
问题 When testing on Windows 10 we were seeing lots of browser incompatibilities that I hadn't seen before with earlier Windows versions. Some browsers would work, but others would report ERR_SPDY_PROTOCOL_ERROR. My quick search for this problem showed I was not alone. My app uses WWSAPI and HTTP.SYS with HTTPS (TLS). Does anyone know how to disable SPDY / HTTP/2 in WWSAPI (which is using HTTP.SYS) on Windows 10? I'd also love to get a full up-to-date Windows 10 list of registry settings for HTTP