commit | 890a21cd9919b859332adbe0c4f682dba6cfeea8 | [log] [tgz] |
---|---|---|
author | martinduke <martinduke@google.com> | Wed Sep 18 07:46:32 2024 -0700 |
committer | Copybara-Service <copybara-worker@google.com> | Wed Sep 18 07:49:30 2024 -0700 |
tree | 3cec267f21635a7e92b51f1485b37deae9afa6d3 | |
parent | 42b2e66c721f442bb439b40a1e037897360cf1b2 [diff] |
Update QuicStream to handle RESET_STREAM_AT frames. When received, the stream will make a note of the reliable_size and store a copy of the RESET_STREAM_AT. If the stream has already consumed at least reliable_size bytes, processes the copy as if it were a regular RST_STREAM. If not already consumed, QuicStream checks every time data is consumed to see if the reliable size has been exceeded, and when it is, processes the reset unless the FIN bit has already been consumed. This CL is just the QuicStream. Other components will follow in later CLs. Protected by FLAGS_quic_reloadable_flag_quic_reliable_stream_reset. PiperOrigin-RevId: 675988866
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.