-
Found when trying to interop with an h3-based server.
https://github.com/hyperium/h3 can send grease frames when finishing a stream.
https://www.rfc-editor.org/rfc/rfc9114.html#extensions
https:/…
-
This will never exit. Something similar is doing google chrome. It creates two connections but sends request only to one of them. Fortunately chrome has some timeout so it closes that unused connectio…
-
We should check whether it makes sense for our endpoint to support directly the grpc-web protocol. Tonic has a module for that, perhaps that could be our starting point? https://github.com/hyperium/to…
-
-
This were disabled as part of #2929, since they depended on `HttpConnector` or `Server::bind`. The first two are easier than the last:
- [x] `benches/pipeline.rs`
- [x] `benches/server.rs`
- [ ] …
-
**Is your feature request related to a problem? Please describe.**
See #1556.
**Describe the solution you'd like**
Following #1682, we should change the Rust implementation of the view servic…
-
### Description about the feature
## When to take a snapshot?
A snapshot will record current state machine .
A server will take a snapshot every `snapshot_count` new entries. The actual value…
-
-
https://web.dev/webtransport
https://w3c.github.io/webtransport/
https://datatracker.ietf.org/doc/html/draft-ietf-webtrans-http3
Related to #71 and #129
Chrome 97 has released (we are currently…
-
Similar to what golang provides with [CloseNotifier](https://golang.org/pkg/net/http/#CloseNotifier), when a request takes a while to process (or is just waiting/long-polling), it is often convenient …