commit | 4a5423cbdbfa50082eee93ad07cc28d2e4ec1ea6 | [log] [tgz] |
---|---|---|
author | birenroy <birenroy@google.com> | Tue Nov 05 11:39:55 2024 -0800 |
committer | Copybara-Service <copybara-worker@google.com> | Tue Nov 05 11:40:45 2024 -0800 |
tree | 7047c84a9bab8463762fca95ee000a07764d3b20 | |
parent | f4d037286cacb466601278d387bad92612cfa920 [diff] |
Simplifies and modernizes SpdyDataIR. * Removes the string_view version of SpdyDataIR::SetDataShallow(), which is unnecessary. * Removes SpdyDataIR::SetDataDeep(), which was only used in a constructor. * Replaces a std::unique_ptr<std::string> with std::optional<std::string>, for less pointer chasing. * Uses template SFINAE to simplify the set of public constructors with `data` arguments convertible to std::string. #cleanup Protected by refactoring and removing unused code; not protected. PiperOrigin-RevId: 693424871
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.