Do not use string_view_utils.h or stringpiece_ssize_type in balsa_headers.cc.

Neither string_view_utils.h nor stringpiece_ssize_type are part of public
Abseil.  This CL copies necessary helper functions to balsa_headers.cc.
stringpiece_ssize_type is typedefed to std::string::difference_type, which, just
like absl::string_piece::difference_type, is an alias to ptrdiff_t.

Also include absl/strings/str_format.h for absl::StrAppendFormat().

PiperOrigin-RevId: 445194088
1 file changed
tree: 9267e1a12c5097ab2e4c60f574b64547936d6c3c
  1. quiche/
  2. CONTRIBUTING.md
  3. LICENSE
  4. README.md
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.