## 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 ```kotlin 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 #3 HTTP2 support ## Related Issues/PRs - #3 HTTP2 support
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
Code Example
Alternatives Considered
Additional Context
Related Issues/PRs