Skip to content

Commit 3848e48

Browse files
committed
Update Kestrel HTTP/3 docs
1 parent 91e5fee commit 3848e48

File tree

1 file changed

+2
-3
lines changed
  • aspnetcore/fundamentals/servers/kestrel

1 file changed

+2
-3
lines changed

aspnetcore/fundamentals/servers/kestrel/http3.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,16 @@ 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-
+---------------+-------------------------+-------------------------+
30+
|---------------|-------------------------|-------------------------|
3131
| Feature | `HTTP/2` | `HTTP/3` |
32-
+---------------+-------------------------+-------------------------+
32+
|---------------|-------------------------|-------------------------|
3333
| Transport | Uses [TCP](https://developer.mozilla.org/docs/Glossary/TCP) | Uses [QUIC](https://www.rfc-editor.org/rfc/rfc9000.html) |
3434
| Layer | | |
3535
| Connection | Slower due to TCP + TLS | Faster with 0-RTT QUIC |
3636
| Setup | handshake | handshakes |
3737
| Head-of-Line | Affected by TCP-level | Eliminated with QUIC |
3838
| Blocking | blocking | stream multiplexing |
3939
| Encryption | TLS over TCP | TLS is built into QUIC |
40-
+---------------+-------------------------+-------------------------+
4140

4241
The key differences from `HTTP/2` to `HTTP/3` are:
4342

0 commit comments

Comments
 (0)