Update QuicWriteBlockedList tests and comments.

Add kStatic and kNonStatic for expressiveness and also for consistency with
kNonIncremental (and future kIncremental).

Make QuicWriteBlockedListTest not inherit from QuicTestWithParam<>, as the tests
are not actually parametrized.

Add QuicWriteBlockedListTest wrapper methods for all `write_blocked_list_`
public methods to make tests more concise.  Remove QuicStreamPriority type name
from argument calls to make tests even more concise.  These two together allow
repeated RegisterStream() calls to fit on a single line each, making tests
easier to read.

Add tests and augment existsing tests to cover previously not exercised methods:
GetSpdyPriorityOfStream(), UpdateStreamPriority(), UnregisterStream().

Remove references to crypto stream and headers stream in comments, as these only
exists in later versions of gQUIC, not in HTTP/3.  Use "static stream" instead,
which is not an HTTP/3 concept, but used widely in QUICHE source to refer to
streams that are essential (in the sense that closure is a connection error).

PiperOrigin-RevId: 502864670
2 files changed
tree: c07668b5f31070a01f1c772e6d5ce4925881bbbc
  1. build/
  2. depstool/
  3. quiche/
  4. .bazelrc
  5. BUILD.bazel
  6. CONTRIBUTING.md
  7. LICENSE
  8. README.md
  9. WHITESPACE
  10. WORKSPACE.bazel
README.md

QUICHE

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.