hyperium / h2

HTTP 2.0 client & server implementation for Rust.
MIT License
1.35k stars 270 forks source link

Remove the ad-hoc header size limit #552

Closed nox closed 3 years ago

nox commented 3 years ago

This limit is hardcoded to be 16KB-100B no matter if the other peer already advertised that it accepts way larger frame sizes, this is a problem sometimes for Google Chat's service workers.

nox commented 3 years ago

Turns out this won't help and I need to implement actual header arbitrary splitting.