Fixes a couple of bugs discovered during integration.
* Uses std::vector::reserve() to reserve space, rather than the vector constructor (which both reserves and fills that space).
* Passes a non-nullptr nghttp2_frame* to the send_data callback within Nghttp2DataFrameSource::SelectPayloadLength().

PiperOrigin-RevId: 381577855
1 file changed
tree: c4788e45a6314eaea36b33965baec2004790ef14
  1. common/
  2. epoll_server/
  3. http2/
  4. quic/
  5. spdy/
  6. CONTRIBUTING.md
  7. LICENSE
  8. README.md
README.md

QUICHE

QUICHE (QUIC, Http/2, Etc) is Google‘s implementation of QUIC and related protocols. It powers Chromium as well as Google’s QUIC servers and some other projects. QUICHE is only supported on little-endian platforms.

Code can be viewed in CodeSearch in Quiche and is imported into Chromium.