Uses the `DataFrameAssembler` in `Http2Dispatcher`.

This is another step toward simplification/optimization of the write path. The new implementation is 1 line longer than the old one, but `DataFrameAssembler` is simpler than `Http2DataFrameBuilder`, and the code is easier to reason about.

Tested in three batches:
```
blaze test --test_arg=--gfe2_reloadable_flag_http2_data_frame_assembler \
  --test_arg=--undefok=gfe2_reloadable_flag_http2_data_frame_assembler \
  //gfe/gfe2/http2:all //gfe/gfe2/http2/e2e:all //gfe/gfe2/vtl/... //gfe/gfe2/e2e/...
```
http://sponge2/f82a0a1d-7ba9-4812-b2df-d325dc1abc03

```
$ blaze test --test_arg=--gfe2_reloadable_flag_http2_data_frame_assembler \
  --test_arg=--undefok=gfe2_reloadable_flag_http2_data_frame_assembler \
  //gfe/e2e/...
```
http://sponge2/578edeee-efa3-4e42-87a2-e5344bf6ea6c

```
$ blaze test --test_arg=--gfe2_reloadable_flag_http2_data_frame_assembler \
  --test_arg=--undefok=gfe2_reloadable_flag_http2_data_frame_assembler \
  //gfe/gfe2/cloud/... //gfe/gfe2/dos/...
```
http://sponge2/a0fca691-7800-477a-be0d-2957f412095f

Protected by FLAGS_gfe2_reloadable_flag_http2_data_frame_assembler.

PiperOrigin-RevId: 662274008
1 file changed
tree: 6f95f5202a82b8caedf4e3ba80fd3d791615ce88
  1. build/
  2. depstool/
  3. quiche/
  4. .bazelrc
  5. .bazelversion
  6. BUILD.bazel
  7. CONTRIBUTING.md
  8. LICENSE
  9. README.md
  10. WHITESPACE
  11. 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.