-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Labels
Description
Feature Description
Implement HPACK header compression for HTTP2 requests and responses.
Problem/Use Case
Header compression reduces bandwidth usage and improves performance, especially for repetitive headers.
Proposed Solution
- Integrate HPACK encoder/decoder
- Manage static and dynamic tables
- Support Huffman encoding
Code Example
val compressed = hpack.encodeHeaders(headers)
val headers = hpack.decodeHeaders(compressed)Alternatives Considered
- Uncompressed headers (not compliant)
Additional Context
- Would this be a breaking change? No
- Priority: High
- Related to HTTP2 support #3 HTTP2 support
Related Issues/PRs
- HTTP2 support #3 HTTP2 support
Reactions are currently unavailable