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

前端 未结 2 1501
终归单人心
终归单人心 2020-12-20 16:53

What are the differences between these two prefixes in terms of HttpListener or any other?

http://+:8080/

http://*:8080/
2条回答
  •  -上瘾入骨i
    2020-12-20 16:55

    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.

提交回复
热议问题