Rollback for 4 changelists related to QUICv2.

*** Reason for rollback ***

Rollback QUICv2 until we figure out the impact on Chrome.

*** Original change descriptions ***

Fix C++ defensive coding advice from the QUICv2 CL (cl/424961568).

There is much more to be done, but that could get out of control fast. Let me know if you want to abandon this, push more into this CL, or commit as-is.

***

Fix Intermittent Contagion Test failure.

Since version mismatch is known to fail ungracefully, the fix is to make sure v2 support matches between the two GFEs

***

Remove enabling_blocked_by for the QUICv2 bug, leaving only the version-negotiation bug.

***

Implement QUICv2 in QUICHE.

This CL reflects draft-ietf-quic-v2-01, except for the version negotiation bits -- therefore, the enable flag is blocked by the VN bug.

There are a bunch of changes to line breaks, particularly in quic_framer, that I believe came from the recently updated code checkers. I'm ignoring some new code checks that suggest changes to existing code constructs -- perhaps we should address the defensive coding stuff in another CL.

***

PiperOrigin-RevId: 427037417
18 files changed
tree: 01f74638bbfbd72c808aa0c9f79dfd833dd7334b
  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.

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.