Skip to content

Commit b10c7e9

Browse files
authored
Fixed comparison table HTTP/2 <-> HTTP/3 (#35591)
1 parent 99d6b83 commit b10c7e9

File tree

1 file changed

+8
-12
lines changed
  • aspnetcore/fundamentals/servers/kestrel

1 file changed

+8
-12
lines changed

aspnetcore/fundamentals/servers/kestrel/http3.md

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,14 @@ uid: fundamentals/servers/kestrel/http3
2727
* Is the latest version of the Hypertext Transfer Protocol.
2828
* Builds on the strengths of `HTTP/2` while addressing some of its limitations, particularly in terms of performance, latency, reliability, and security.
2929

30-
+---------------+-------------------------+-------------------------+
31-
| Feature | `HTTP/2` | `HTTP/3` |
32-
+---------------+-------------------------+-------------------------+
33-
| Transport | Uses [TCP](https://developer.mozilla.org/docs/Glossary/TCP) | Uses [QUIC](https://www.rfc-editor.org/rfc/rfc9000.html) |
34-
| Layer | | |
35-
| Connection | Slower due to TCP + TLS | Faster with 0-RTT QUIC |
36-
| Setup | handshake | handshakes |
37-
| Head-of-Line | Affected by TCP-level | Eliminated with QUIC |
38-
| Blocking | blocking | stream multiplexing |
39-
| Encryption | TLS over TCP | TLS is built into QUIC |
40-
+---------------+-------------------------+-------------------------+
41-
30+
| Feature | `HTTP/2` | `HTTP/3` |
31+
|--------------|-------------------------------------------------------------|----------------------------------------------------------|
32+
| Transport | Uses [TCP](https://developer.mozilla.org/docs/Glossary/TCP) | Uses [QUIC](https://www.rfc-editor.org/rfc/rfc9000.html) |
33+
| Connection | Slower due to TCP + TLS | Faster with 0-RTT QUIC |
34+
| Setup | handshake | handshakes |
35+
| Head-of-Line | Affected by TCP-level | Eliminated with QUIC |
36+
| Blocking | blocking | stream multiplexing |
37+
| Encryption | TLS over TCP | TLS is built into QUIC |
4238

4339
The key differences from `HTTP/2` to `HTTP/3` are:
4440

0 commit comments

Comments
 (0)