You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(http3): merge hackney_quic into hackney_h3
Collapses the thin quic adapter and the h3 high-level module into a
single hackney_h3. Public low-level message tag renamed from
{quic, ConnRef, _} to {h3, ConnRef, _}; public low-level API moves
from hackney_quic: to hackney_h3:. Updates hackney_conn, tests, xref
config, and docs accordingly.
Copy file name to clipboardExpand all lines: guides/http3_guide.md
+23-23Lines changed: 23 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ Hackney supports HTTP/3, the latest version of HTTP built on QUIC (UDP-based tra
17
17
18
18
## Requirements
19
19
20
-
HTTP/3 support is provided by the [`erlang_quic`](https://github.com/benoitc/erlang_quic) dependency (module `quic_h3`), which handles the QUIC transport, QPACK header compression, HTTP/3 framing, and control streams. Hackney hosts only a thin adapter (`hackney_quic`) that translates `quic_h3` events into the internal connection protocol. No C dependencies, no external binaries required.
20
+
HTTP/3 support is provided by the [`erlang_quic`](https://github.com/benoitc/erlang_quic) dependency (module `quic_h3`), which handles the QUIC transport, QPACK header compression, HTTP/3 framing, and control streams. Hackney hosts only a thin adapter (`hackney_h3`) that translates `quic_h3` events into the internal connection protocol. No C dependencies, no external binaries required.
21
21
22
22
## Quick Start
23
23
@@ -186,24 +186,24 @@ Like HTTP/2, HTTP/3 multiplexes requests as streams on a single QUIC connection:
186
186
187
187
The high-level `hackney:get/post/...` functions cover the common case. For
188
188
servers that send streamed responses, or when you want to drive several
189
-
requests concurrently on the same QUIC connection, use the `hackney_quic`
189
+
requests concurrently on the same QUIC connection, use the `hackney_h3`
0 commit comments