Marko Lalic
Marko Lalic
This PR adds full support for flow control window updates on the connection and session layers. The `HttpConnection` struct has grown methods for sending window updates to the peer, as...
Currently, the stream-layer API does not allow for a stream to have any HTTP trailers. They should be exposed similarly to how the stream body is.
A minimal repro: ```rust mod foo { pub struct Foo; } mod bar { pub struct Foo; } use foo::{ Foo as Foo1 }; use bar::{ Foo as Foo2 };...