commit | 4bc013a9ef7248b3a0f1956514fcf5ca07dbc949 | [log] [tgz] |
---|---|---|
author | martinduke <martinduke@google.com> | Tue Dec 10 10:19:27 2024 -0800 |
committer | Copybara-Service <copybara-worker@google.com> | Tue Dec 10 10:20:49 2024 -0800 |
tree | 0cdb09de06e39aadeab0ad42908f4099c6f0559e | |
parent | f6c70ec1a6ab6197bcb80ae1289cf41b200a15bd [diff] |
Send-side RESET_STREAM_AT frame. Nothing utilizes the API yet, so not protected. This API is documented at go/reset-stream-at. The application calls SetReliableSize() at will, which means that all data in the send buffer at that point will be delivered reliably, even if it is later reset. If reliable_size is set, then an incoming STOP_SENDING will result in RESET_STREAM_AT. When the application calls PartialResetWriteSide(), send a RESET_STREAM_AT with the indicated reliable_size. Accept no more data from the application, and notionally acknowledge any sent data beyond reliable_size. (a) if reliable_size has been sent, the write side is closed, and if the read side is closed, the stream will when reliable_size is acked. (b) if reliable_size has been buffered, the write side will not close until the buffered data up to reliable_size has been sent. PiperOrigin-RevId: 704756508
QUICHE stands for QUIC, Http, Etc. It is Google‘s production-ready implementation of QUIC, HTTP/2, HTTP/3, and related protocols and tools. It powers Google’s servers, Chromium, Envoy, and other projects. It is actively developed and maintained.
There are two public QUICHE repositories. Either one may be used by embedders, as they are automatically kept in sync:
To embed QUICHE in your project, platform APIs need to be implemented and build files need to be created. Note that it is on the QUICHE team's roadmap to include default implementation for all platform APIs and to open-source build files. In the meanwhile, take a look at open source embedders like Chromium and Envoy to get started:
To contribute to QUICHE, follow instructions at CONTRIBUTING.md.
QUICHE is only supported on little-endian platforms.