Changes between Version 2 and Version 3 of Ticket #808, comment 3
- Timestamp:
- 10/13/15 10:04:14 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #808, comment 3
v2 v3 7 7 I'm not sure separation is the correct word, other server implementations I have tested with are able to offer support for HTTP/1.1 and h2c on the same plain TCP port. The selection of protocol within such servers is based on the request line, either a standard one in HTTP/1.1 form (including Upgrade header, allowing negotiation without additional round trips) or the HTTP/2 connection preface. 8 8 9 This issue has occurred due the inconsistency between defining {{{listen port_num http2 ssl}}} (which supports HTTP/1.1 and h2, with the protocol being selected via ALPN) and {{{listen port_num http2}}} (which only supports h2c via prior knowledge).9 This issue has occurred due the inconsistency between defining {{{listen port_num http2 ssl}}} (which supports HTTP/1.1 and h2, with the protocol being selected via ALPN) and {{{listen port_num http2}}} (which only supports h2c, via prior knowledge). 10 10 11 11