Use global constant instead of member for HPACK and QPACK entry size overhead.

Constexpr instead of const allows for the compiler to inline the value.
However, Chromium does not support constexpr members, so this variable needs to
be moved out of the class.  (Chromium does not support inline constexpr either.)
See go/totw/140.

PiperOrigin-RevId: 363163066
Change-Id: I8412445d339c0745590cd4330381ca5980ebeb80
7 files changed
tree: 303c340bc8f076ade66516c22535ea7038b0a339
  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.