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
feat(http2): implement HTTP/2 informational responses support
Add support for HTTP/2 informational responses (1xx status codes) including
103 Early Hints. This enables servers to send preliminary headers before
the final response, improving client performance through early resource
discovery and connection establishment.
Changes include:
- extend client and server APIs to handle interim informational responses
- update stream state management for 1xx responses
- add test for interim informational response scenarios
- fix MSRV compatibility by updating hashbrown to 0.16.1 in CI.yml, and upgrading rustc to 1.65 in Cargo.toml
This implementation follows RFC 7540 and RFC 8297 specifications for
HTTP/2 informational responses handling.
0 commit comments