Closed
Description
Currently sending bodies will just push unbounded into the h2 buffer. While this works, unbounded buffering is not so great. Instead, hyper should check for existing window capacity before polling the body for data.
Steps to fix
- Basically, update
proto::h2::PipeToSendStream
similar to how it was done in this commit.