Move lengthy inline functions from headers file to the .cc file.

This is following the C++ style guide: "Define functions inline only when they are small, say, 10 lines or fewer. Inlining a very small accessor function will usually decrease code size while inlining a very large function can dramatically increase code size."

No behavior change. not protected.

PiperOrigin-RevId: 325052309
Change-Id: Iede30d11e3ca118e763db000d11f56fbd7cae1f6
2 files changed
tree: 67d31714b02e6005354a1aac3a208dad8cb714b4
  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.