Fix remaining Chromim compile issues.

Chromium does not allow C++17-features and actually has -Wc++17-extensions
enabled.  Unfortunately adding it to the internal BUILD file does not seem to
have the desired effect.

Also remove an unnecessary internal-only include.

Also convert static constexpr class members to enum members.  Unfortunately
static constexpr members do not link when used in EXPECT_ macros.  I have
already seen this strangeness, see
https://quiche.googlesource.com/quiche/+/9d0a88542030288b1e02646485b929abb1f0f481.

PiperOrigin-RevId: 387364180
4 files changed
tree: 08e7d6866a7ae1b2b8669b6e43da14e20f03edde
  1. common/
  2. epoll_server/
  3. http2/
  4. quic/
  5. spdy/
  6. CONTRIBUTING.md
  7. LICENSE
  8. README.md
README.md

QUICHE

QUICHE stands for QUIC, Http/2, 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.

The canonical open-source QUICHE repository is at https://quiche.googlesource.com/quiche.

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:

QUICHE is only supported on little-endian platforms.